Added missing dependencies

This commit is contained in:
servetg 2017-03-28 10:57:04 +03:00
parent 89749cec81
commit 884eab6d4d

View File

@ -5,9 +5,13 @@
/**
* @exports GeoJSONGeometry
*/
define(['./GeoJSONConstants'
define(['../../error/ArgumentError',
'./GeoJSONConstants',
'../../util/Logger'
],
function (GeoJSONConstants) {
function (ArgumentError,
GeoJSONConstants,
Logger) {
"use strict";
/**
@ -43,7 +47,7 @@ define(['./GeoJSONConstants'
this._coordinates = coordinates;
// Documented in defineProperties below.
this._type = type;
this._type = type;
// Documented in defineProperties below.
this._bbox = bbox ? bbox : null;