Move ajax handling to the map service.

This commit is contained in:
David Molineus
2015-01-28 16:40:48 +01:00
parent fdc427d92b
commit ff0d2d9ec6
4 changed files with 84 additions and 54 deletions

View File

@@ -37,7 +37,8 @@ $container['leaflet.map.service'] = $container->share(function ($container) {
return new MapService(
$container['leaflet.definition.mapper'],
$container['leaflet.definition.builder'],
$container['event-dispatcher']
$container['event-dispatcher'],
$container['input']
);
});