What's really challenging was upgrading to OpenLayers 4 and using the ES2015 module version of it (https://www.npmjs.com/package/ol)... in TypeScript!
Here's a quick summary:
Biggest lesson was a reminder that TypeScript is a strict superset of ES2015.
I was able to simply use the OL4 Modules as is, but, I have to admit, I stumbled a lot. First I installed the ol package from npm:
npm install ol@4.1.1 --saveEasy enough. Then I tried using it like I do with all the other Angular stuff:
import { Map } from 'ol/map';What!? Why does this not work?! Remember, I'm still new at ES2015...
So yes, the first problem was that OL was not exporting named members, only one default member. So removing those curly braces fixed that issue, but took me way too long to get there in the first place :(
This file contains 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
import { Injectable } from '@angular/core'; | |
import { Http } from '@angular/http'; | |
import Map from 'ol/map'; | |
import View from 'ol/view'; | |
import Layer from 'ol/layer/layer'; | |
import olControl from 'ol/control'; | |
@Injectable() | |
export class MapService { | |
private map: Map; | |
... | |
} |
This will work with Webpack and Angular CLI out of the box.
If you want typing to work (which, of course, you do... who wouldn't when you're working in TypeScript?), you're gonna need to do a bit more. DefinitelyTyped only has the definition for OpenLayers 3 as of this writing. They may have version 4 now by the time you read this, so check with them first.
In the meantime, I used
typings install file:custom_typings/ol.d.ts --save --globalNote the special "file:" protocol. I've also put my custom typing for this in my "custom_typings" directory. Seems, though, that I had to exclude this directory in my tsconfig.json file, otherwise I was getting duplicate definition errors.
Another snag I hit was that I was using things like ol.interaction.Select.Event, which is a public class, by the way. These were not its own module and there were no typings definition for it. I had to create my own "extended" typing file for these. I was able to open up ol module again and extend like such:
This file contains 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
declare module ol { | |
module interaction { | |
namespace Select { | |
class Event extends ol.events.Event { | |
constructor( | |
type: any, | |
selected: Array<ol.Feature>, | |
deselected: Array<ol.Feature>, | |
mapBrowserEvent: ol.MapBrowserEvent | |
); | |
selected: Array<ol.Feature>; | |
deselected: Array<ol.Feature>; | |
mapBrowserEvent: ol.MapBrowserEvent; | |
} | |
} | |
} | |
} |