从 ggmap 点反转颜色

Reverse colors from ggmap points

我想从以下 ggmap 创建中反转点和标签的颜色:

ggmap(Map) +
  geom_point(data = DF, aes (x = Longitude, 
                                y = Latitude, 
                                color = RPM)) +
  labs(y = "Latitude", x = "Longitude", color = "RPM")

我现在不想将数据集更改为空间点。

我得到以下结果:

我已尝试对所提供的代码进行以下补充:

scale_colour_brewer(direction = -1)

但我收到以下错误消息:

错误:提供给离散刻度的连续值

在以下位置找到答案:

用找到的案例R颜色默认调色板简单地切换位置:

scale_fill_continuous(high = "#132B43", low = "#56B1F7")