GrapesJS / grapesjs

Free and Open source Web Builder Framework. Next generation tool for building templates without coding
https://grapesjs.com
BSD 3-Clause "New" or "Revised" License
22.38k stars 4.06k forks source link

How control settings like Google Maps #1172

Closed AB6162 closed 6 years ago

AB6162 commented 6 years ago

I've been reading the GrapeJS API but couldn't find where I can manipulate a block's settings and pass those parameters as they are in the Google Maps block. Where can I find the information I need?

image

artf commented 6 years ago

This is how the map block is inserted via basic blocks plugin So you can override it in this way

editor.BlockManager.add('map', {
    label: 'My Map',
    attributes: { class:'fa fa-map-o' },
    content: {
      type: 'map',
      style: { height: '350px' },
      mapType: 'q', // q - Roadmap / w - Satellite
      address: 'Miami',
      zoom: 1, // max 20
    },
  });
lock[bot] commented 5 years ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.