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 000000000..86709cabc Binary files /dev/null and b/tests/pointlm/tl_2021_18_pointlm.shp.json.gz differ diff --git a/tile-join.cpp b/tile-join.cpp index 91bc53752..c988e4ebf 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -25,7 +25,6 @@ #include #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