summaryrefslogtreecommitdiff
path: root/include/mbgl/map
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-26 16:39:56 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-06-02 14:51:39 -0700
commitc902f9098b331302aaa1baac77d1575db624a132 (patch)
tree211901cd04454aedbac40c469198438e46d7038c /include/mbgl/map
parent18149cbcc27a926f280b08d8d0e09104b2147688 (diff)
downloadqtlocation-mapboxgl-c902f9098b331302aaa1baac77d1575db624a132.tar.gz
[core] Rationalize naming for style-related code
Diffstat (limited to 'include/mbgl/map')
-rw-r--r--include/mbgl/map/map.hpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp
index aadfdf9ada..b44b53ff99 100644
--- a/include/mbgl/map/map.hpp
+++ b/include/mbgl/map/map.hpp
@@ -9,7 +9,7 @@
#include <mbgl/util/feature.hpp>
#include <mbgl/util/noncopyable.hpp>
#include <mbgl/annotation/annotation.hpp>
-#include <mbgl/style/property_transition.hpp>
+#include <mbgl/style/transition_options.hpp>
#include <cstdint>
#include <string>
@@ -22,10 +22,13 @@ namespace mbgl {
class FileSource;
class View;
class SpriteImage;
-class Layer;
struct CameraOptions;
struct AnimationOptions;
+namespace style {
+class Layer;
+}
+
class Map : private util::noncopyable {
public:
explicit Map(View&, FileSource&,
@@ -47,9 +50,9 @@ public:
void update(Update update);
// Styling
- void addClass(const std::string&, const PropertyTransition& = {});
- void removeClass(const std::string&, const PropertyTransition& = {});
- void setClasses(const std::vector<std::string>&, const PropertyTransition& = {});
+ void addClass(const std::string&, const style::TransitionOptions& = {});
+ void removeClass(const std::string&, const style::TransitionOptions& = {});
+ void setClasses(const std::vector<std::string>&, const style::TransitionOptions& = {});
bool hasClass(const std::string&) const;
std::vector<std::string> getClasses() const;
@@ -146,7 +149,7 @@ public:
AnnotationIDs getPointAnnotationsInBounds(const LatLngBounds&);
- void addLayer(std::unique_ptr<Layer>, const optional<std::string>& beforeLayerID = {});
+ void addLayer(std::unique_ptr<style::Layer>, const optional<std::string>& beforeLayerID = {});
void removeLayer(const std::string& layerID);
// Feature queries