-1

Google Maps' frontend is almost completely dependent on canvas.

Given that it was initially developed a long time ago, is it still the best approach to take to build such a UI? If not, what is and why?

  • Why would you need react or angular for something like google maps?! Besides of adding lots of KBs, making it slower and more complex, what exactly would be the point? ...if it's a nail, use a hammer, otherwise, don't. – dagnelies Apr 30 '18 at 13:29
  • Conversely, why would you use canvas for an ordinary forms application? Use the proper tool for the job. – Robert Harvey Apr 30 '18 at 16:05

1 Answers1

4

Any map based application will use Canvas, SVG or WebGL for actually drawing the map and it is orthogonal to using Angular or even page being SPA at all. Look at frameworks like https://openlayers.org/ and http://leafletjs.com/ to have better idea which parts of google-maps are actually Canvas dependent.

user158037
  • 221
  • 1
  • 3