From 7da27f2a16c0530d50557f3885595daedeadee8d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Sep 2017 22:31:11 -0400 Subject: [PATCH] Hide administrative boundaries by default (closes #4292) --- dist/index.html | 1 + index.html | 2 ++ 2 files changed, 3 insertions(+) diff --git a/dist/index.html b/dist/index.html index 7ea898aaf..c39e66294 100644 --- a/dist/index.html +++ b/dist/index.html @@ -38,6 +38,7 @@ document.getElementById('id-container').className = 'unsupported'; } else { var id = iD.Context(); + id.features().disable('boundaries'); id.ui()(document.getElementById('id-container')); } diff --git a/index.html b/index.html index 2d611ccfb..42cce0eee 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,8 @@ id = iD.Context() .assetPath('dist/'); + id.features().disable('boundaries'); + id.ui()(document.getElementById('id-container'), function() { iD.d3.select('#about-list') .insert('li', '.user-list')