由于API GET请求错误,无法在Mapbox中加载图层

时间:2017-10-26 18:49:56

标签: javascript html mapbox mapbox-gl mapbox-android

我尝试开发一个网络图谱界面,这样我就可以选择基本地图样式,这样也会将呼叫中心员工人数添加到地图中。它将以研究生符号的形式出现,其中圆圈越大意味着越多。员工当我检查网页时,它显示“{”消息“:”id必须是格式为account.handle“}的字符串。

附上网页截图。代码低于Webpage Here Webpage

proc sql;
  create table want as
  select
    PeopleID, ApplicationID, Applied_date, Decision_date
  , case
      when exists (
        select * from have as inner 
        where inner.PeopleID = outer.PeopleID
          and inner.ApplicationID < outer.ApplicationID
          and 
            case
              when inner.Decision_date is null and outer.Decision_date is null then 1
              when inner.Decision_date is null then 1
              when outer.Decision_date is null then 0
              else outer.Decision_date < inner.Decision_date
            end
      )
      then 1
      else 0
    end as Ongoing_flag
  from have as outer
  ;

0 个答案:

没有答案