Adding geojson tile set to an existing map

Are student evaluations of teaching assistants read by others in the faculty?

Sequence of Tenses: Translating the subjunctive

Term for the "extreme-extension" version of a straw man fallacy?

Is there a good way to store credentials outside of a password manager?

How many times can American Tourist re-enter UK in same 6 month period?

Do the temporary hit points from Reckless Abandon stack if I make multiple attacks on my turn?

CREATE opcode: what does it really do?

How easy is it to start Magic from scratch?

Method to test if a number is a perfect power?

Is HostGator storing my password in plaintext?

Class Action - which options I have?

Increase performance creating Mandelbrot set in python

India just shot down a satellite from the ground. At what altitude range is the resulting debris field?

Pole-zeros of a real-valued causal FIR system

Do sorcerers' subtle spells require a skill check to be unseen?

How to run a prison with the smallest amount of guards?

Purchasing a ticket for someone else in another country?

How to check is there any negative term in a large list?

Detecting if an element is found inside a container

Where does the Z80 processor start executing from?

How to be diplomatic in refusing to write code that breaches the privacy of our users

Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?

As a short term trader, do I personally have to keep track of every wash sale for tax purposes?

What does "I’d sit this one out, Cap," imply or mean in the context?



Adding geojson tile set to an existing map














0















I'm confused on how to add my geojson tileset to an existing map built with a default style. Do I add the geojson by ID or by style? Here is what I'm working with now.



Added .geojson to Tilesets as FCC_States2_4326-7v9iga
ID = mmcinnis.crxr86ot



style made with tileset:
mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



Thanks!



'''



Added .geojson to Tilesets as FCC_States2_4326-7v9iga
ID = mmcinnis.crxr86ot



pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w



style made with tileset:
mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



Thanks!




mapboxgl.accessToken = 'pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/light-v10',
//style: 'mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy',
center: [-99.9, 41.5],
zoom: 1
});

map.on('load', function () {
map.addSource("fcc-states2-4326", {
type: "geojson",
data: "mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy"
})

map.addLayer({
'id': 'example',
'type': 'fill',
'source': "fcc-states2-4326",
'layout': {},
'paint': {
'fill-color': '#088',
'fill-opacity': 0.8
}
});
});



'''









share



























    0















    I'm confused on how to add my geojson tileset to an existing map built with a default style. Do I add the geojson by ID or by style? Here is what I'm working with now.



    Added .geojson to Tilesets as FCC_States2_4326-7v9iga
    ID = mmcinnis.crxr86ot



    style made with tileset:
    mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



    I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



    Thanks!



    '''



    Added .geojson to Tilesets as FCC_States2_4326-7v9iga
    ID = mmcinnis.crxr86ot



    pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w



    style made with tileset:
    mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



    I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



    Thanks!




    mapboxgl.accessToken = 'pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w';
    var map = new mapboxgl.Map({
    container: 'map',
    style: 'mapbox://styles/mapbox/light-v10',
    //style: 'mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy',
    center: [-99.9, 41.5],
    zoom: 1
    });

    map.on('load', function () {
    map.addSource("fcc-states2-4326", {
    type: "geojson",
    data: "mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy"
    })

    map.addLayer({
    'id': 'example',
    'type': 'fill',
    'source': "fcc-states2-4326",
    'layout': {},
    'paint': {
    'fill-color': '#088',
    'fill-opacity': 0.8
    }
    });
    });



    '''









    share

























      0












      0








      0








      I'm confused on how to add my geojson tileset to an existing map built with a default style. Do I add the geojson by ID or by style? Here is what I'm working with now.



      Added .geojson to Tilesets as FCC_States2_4326-7v9iga
      ID = mmcinnis.crxr86ot



      style made with tileset:
      mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



      I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



      Thanks!



      '''



      Added .geojson to Tilesets as FCC_States2_4326-7v9iga
      ID = mmcinnis.crxr86ot



      pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w



      style made with tileset:
      mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



      I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



      Thanks!




      mapboxgl.accessToken = 'pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w';
      var map = new mapboxgl.Map({
      container: 'map',
      style: 'mapbox://styles/mapbox/light-v10',
      //style: 'mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy',
      center: [-99.9, 41.5],
      zoom: 1
      });

      map.on('load', function () {
      map.addSource("fcc-states2-4326", {
      type: "geojson",
      data: "mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy"
      })

      map.addLayer({
      'id': 'example',
      'type': 'fill',
      'source': "fcc-states2-4326",
      'layout': {},
      'paint': {
      'fill-color': '#088',
      'fill-opacity': 0.8
      }
      });
      });



      '''









      share














      I'm confused on how to add my geojson tileset to an existing map built with a default style. Do I add the geojson by ID or by style? Here is what I'm working with now.



      Added .geojson to Tilesets as FCC_States2_4326-7v9iga
      ID = mmcinnis.crxr86ot



      style made with tileset:
      mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



      I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



      Thanks!



      '''



      Added .geojson to Tilesets as FCC_States2_4326-7v9iga
      ID = mmcinnis.crxr86ot



      pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w



      style made with tileset:
      mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy



      I'm quite frustrated with this. I know it will work well for what I'm doing but I can't get traction.



      Thanks!




      mapboxgl.accessToken = 'pk.eyJ1IjoibW1jaW5uaXMiLCJhIjoiY2p0OHo1aXV3MDE1eDQzcGIyMDlvdGdrYSJ9.OusiGMmf4C0EdObSTALk1w';
      var map = new mapboxgl.Map({
      container: 'map',
      style: 'mapbox://styles/mapbox/light-v10',
      //style: 'mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy',
      center: [-99.9, 41.5],
      zoom: 1
      });

      map.on('load', function () {
      map.addSource("fcc-states2-4326", {
      type: "geojson",
      data: "mapbox://styles/mmcinnis/cjtroguqv0t8s1fqjo9o5rwvy"
      })

      map.addLayer({
      'id': 'example',
      'type': 'fill',
      'source': "fcc-states2-4326",
      'layout': {},
      'paint': {
      'fill-color': '#088',
      'fill-opacity': 0.8
      }
      });
      });



      '''







      layers style mapbox





      share












      share










      share



      share










      asked 5 mins ago









      user2084255user2084255

      1




      1






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "79"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f316934%2fadding-geojson-tile-set-to-an-existing-map%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f316934%2fadding-geojson-tile-set-to-an-existing-map%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          (145452) 2005 RN43 Классификация | Примечания | Ссылки |...

          Щит и меч (фильм) Содержание Названия серий | Сюжет |...

          Энтрерриос (город) Содержание История | Географическое...