Created
June 21, 2018 18:25
-
-
Save allthesignals/5c87c9273829fe492b6f7aee3272dfa1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default class ProjectsMapComponent extends Component { | |
| @restartableTask | |
| projectCentroidsSource = function*() { | |
| const sourceLayers = [{ | |
| id: 'project-centroids', | |
| sql: 'SELECT * FROM project_centroids', | |
| }]; | |
| const tileURL = yield carto.getVectorTileTemplate(sourceLayers); | |
| return { | |
| type: 'vector', | |
| tiles: [tileURL], | |
| }; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment