Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. [out:json][timeout:25];
  2. // fetch area “Hungary” to search in
  3. {{geocodeArea:Hungary}}->.searchArea;
  4. // gather results
  5. (
  6. node["gsm:cellid"](area.searchArea);
  7. way["gsm:cellid"](area.searchArea);
  8. relation["gsm:cellid"](area.searchArea);
  9.  
  10. node["umts:cellid"](area.searchArea);
  11. way["umts:cellid"](area.searchArea);
  12. relation["umts:cellid"](area.searchArea);
  13.  
  14. node["lte:cellid"](area.searchArea);
  15. way["lte:cellid"](area.searchArea);
  16. relation["lte:cellid"](area.searchArea);
  17. );
  18. // print results
  19. out body;
  20. >;
  21. out skel qt;
  22.  
  23. {{style:
  24.  
  25. node {
  26. symbol-fill-opacity: 1;
  27. symbol-fill-color: #909090;
  28. symbol-stroke-color: #ffffff;
  29. symbol-stroke-width: 1.2;
  30. symbol-size: 5;
  31. }
  32.  
  33. node[gsm:cellid] {
  34. symbol-size: 7;
  35. symbol-stroke-width: 1.8;
  36. }
  37.  
  38. node[operator] {
  39. symbol-fill-color: #606060;
  40. }
  41.  
  42. node[operator=Telenor] {
  43. symbol-fill-color: #00a9e3;
  44. }
  45.  
  46. node[operator=Telekom] {
  47. symbol-fill-color: #000000;
  48. }
  49.  
  50. node[operator=Vodafone] {
  51. symbol-fill-color: #d5030b;
  52. }
  53.  
  54. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement