X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/e270cd3d8aa62bca2630191b41958be0d0cbd430..6339640601c48c559aed48a573946fc25785a6e9:/src/terraserver.c?ds=inline diff --git a/src/terraserver.c b/src/terraserver.c index c79fb34c..9e1636c7 100644 --- a/src/terraserver.c +++ b/src/terraserver.c @@ -18,17 +18,20 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include "terraserver.h" #include "terraservermapsource.h" #include "vikmapslayer.h" void terraserver_init () { - VikMapSource *map_type_1 = VIK_MAP_SOURCE(terraserver_map_source_new_with_id( 2, 2 )); - VikMapSource *map_type_2 = VIK_MAP_SOURCE(terraserver_map_source_new_with_id( 1, 1 )); - VikMapSource *map_type_3 = VIK_MAP_SOURCE(terraserver_map_source_new_with_id( 4, 4 )); + VikMapSource *map_type_1 = VIK_MAP_SOURCE(terraserver_map_source_new_with_id( 2, "Terraserver Topos", 2 )); + VikMapSource *map_type_2 = VIK_MAP_SOURCE(terraserver_map_source_new_with_id( 1, "Terraserver Aerials", 1 )); + VikMapSource *map_type_3 = VIK_MAP_SOURCE(terraserver_map_source_new_with_id( 4, "Terraserver Urban Areas", 4 )); - maps_layer_register_map_source ("Terraserver Topos", map_type_1); - maps_layer_register_map_source ("Terraserver Aerials", map_type_2); - maps_layer_register_map_source ("Terraserver Urban Areas", map_type_3); + maps_layer_register_map_source (map_type_1); + maps_layer_register_map_source (map_type_2); + maps_layer_register_map_source (map_type_3); }