Not yet working but a good start
16
.gitignore
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
/resources/public/js/compiled/**
|
||||||
|
figwheel_server.log
|
||||||
|
pom.xml
|
||||||
|
*jar
|
||||||
|
/lib/
|
||||||
|
/classes/
|
||||||
|
/out/
|
||||||
|
/target/
|
||||||
|
/resources/public/vendor/
|
||||||
|
.lein-deps-sum
|
||||||
|
.lein-repl-history
|
||||||
|
.lein-plugins/
|
||||||
|
.repl
|
||||||
|
.nrepl-port
|
||||||
|
|
||||||
|
resources/public/data/
|
277
LICENSE.md
Normal file
|
@ -0,0 +1,277 @@
|
||||||
|
GNU General Public License
|
||||||
|
==========================
|
||||||
|
|
||||||
|
_Version 2, June 1991_
|
||||||
|
_Copyright © 1989, 1991 Free Software Foundation, Inc.,_
|
||||||
|
_51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA_
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
### Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Lesser General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: **(1)** copyright the software, and
|
||||||
|
**(2)** offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
**0.** This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The “Program”, below,
|
||||||
|
refers to any such program or work, and a “work based on the Program”
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term “modification”.) Each licensee is addressed as “you”.
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
**1.** You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
**2.** You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
* **a)** You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
* **b)** You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
* **c)** If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
**3.** You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
* **a)** Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
* **b)** Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
* **c)** Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
**4.** You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
**5.** You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
**6.** Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
**7.** If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
**8.** If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
**9.** The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and “any
|
||||||
|
later version”, you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
**10.** If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
### NO WARRANTY
|
||||||
|
|
||||||
|
**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
|
@ -18,12 +18,11 @@ The CSV file must have
|
||||||
|
|
||||||
Additionally, the value of the column `category`, if present, will be used to select map pins from the map pins folder, if a suitable pin is present. Thus is the value of `category` is `foo`, a map pin image with the name `Foo-pin.png` will be selected.
|
Additionally, the value of the column `category`, if present, will be used to select map pins from the map pins folder, if a suitable pin is present. Thus is the value of `category` is `foo`, a map pin image with the name `Foo-pin.png` will be selected.
|
||||||
|
|
||||||
Note that, unlike in geocsv, *THERE IS NO DEFAULT PIN*, as we cannot query the server for pin names. So a default pin will be shown only if either
|
Note that, unlike in **geocsv**, *THERE IS NO DEFAULT PIN*, as there is no server side intelligence so we cannot query the server for pin names. So a default pin will be shown only if either
|
||||||
|
|
||||||
1. There is no `category` column, or
|
1. There is no `category` column, or
|
||||||
2. If the `category` column is empty
|
2. If the `category` column is empty
|
||||||
|
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
To get an interactive development environment run:
|
To get an interactive development environment run:
|
||||||
|
@ -52,6 +51,6 @@ get live reloading, nor a REPL.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright © 2014 FIXME
|
Copyright © 2020 Simon Brooke
|
||||||
|
|
||||||
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
|
Licensed under the GNU General Public License, version 2.0 or (at your option) any later version.
|
||||||
|
|
42
dev/user.clj
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
(ns user
|
||||||
|
(:require
|
||||||
|
[figwheel-sidecar.repl-api :as f]))
|
||||||
|
|
||||||
|
;; user is a namespace that the Clojure runtime looks for and
|
||||||
|
;; loads if its available
|
||||||
|
|
||||||
|
;; You can place helper functions in here. This is great for starting
|
||||||
|
;; and stopping your webserver and other development services
|
||||||
|
|
||||||
|
;; The definitions in here will be available if you run "lein repl" or launch a
|
||||||
|
;; Clojure repl some other way
|
||||||
|
|
||||||
|
;; You have to ensure that the libraries you :require are listed in your dependencies
|
||||||
|
|
||||||
|
;; Once you start down this path
|
||||||
|
;; you will probably want to look at
|
||||||
|
;; tools.namespace https://github.com/clojure/tools.namespace
|
||||||
|
;; and Component https://github.com/stuartsierra/component
|
||||||
|
|
||||||
|
|
||||||
|
(defn fig-start
|
||||||
|
"This starts the figwheel server and watch based auto-compiler."
|
||||||
|
[]
|
||||||
|
;; this call will only work as long as your :cljsbuild and
|
||||||
|
;; :figwheel configurations are at the top level of your project.clj
|
||||||
|
;; and are not spread across different lein profiles
|
||||||
|
|
||||||
|
;; otherwise you can pass a configuration into start-figwheel! manually
|
||||||
|
(f/start-figwheel!))
|
||||||
|
|
||||||
|
(defn fig-stop
|
||||||
|
"Stop the figwheel server and watch based auto-compiler."
|
||||||
|
[]
|
||||||
|
(f/stop-figwheel!))
|
||||||
|
|
||||||
|
;; if you are in an nREPL environment you will need to make sure you
|
||||||
|
;; have setup piggieback for this to work
|
||||||
|
(defn cljs-repl
|
||||||
|
"Launch a ClojureScript REPL that is connected to your build and host environment."
|
||||||
|
[]
|
||||||
|
(f/cljs-repl))
|
101
project.clj
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
(defproject geocsv-lite "0.1.0-SNAPSHOT"
|
||||||
|
:description "An ultra-lightweight tool to show comma-separated value data on a map."
|
||||||
|
:url "http://example.com/FIXME"
|
||||||
|
:license {:name "GPL-2.0-or-later WITH Classpath-exception-2.0"
|
||||||
|
:url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}
|
||||||
|
|
||||||
|
:min-lein-version "2.9.1"
|
||||||
|
|
||||||
|
:dependencies [[org.clojure/clojure "1.10.0"]
|
||||||
|
[org.clojure/clojurescript "1.10.520"]
|
||||||
|
[org.clojure/core.async "0.4.500"]
|
||||||
|
[cljs-http "0.1.46"]]
|
||||||
|
|
||||||
|
:plugins [[lein-figwheel "0.5.19"]
|
||||||
|
[lein-cljsbuild "1.1.7" :exclusions [[org.clojure/clojure]]]
|
||||||
|
[lein-npm "0.6.2"]]
|
||||||
|
|
||||||
|
:npm {:dependencies [[papaparse "5.1.0"]
|
||||||
|
[leaflet "1.6.0"]]
|
||||||
|
:root "resources/public/vendor"}
|
||||||
|
|
||||||
|
:source-paths ["src"]
|
||||||
|
|
||||||
|
:cljsbuild {:builds
|
||||||
|
[{:id "dev"
|
||||||
|
:source-paths ["src"]
|
||||||
|
|
||||||
|
;; The presence of a :figwheel configuration here
|
||||||
|
;; will cause figwheel to inject the figwheel client
|
||||||
|
;; into your build
|
||||||
|
:figwheel {:on-jsload "geocsv-lite.core/on-js-reload"
|
||||||
|
;; :open-urls will pop open your application
|
||||||
|
;; in the default browser once Figwheel has
|
||||||
|
;; started and compiled your application.
|
||||||
|
;; Comment this out once it no longer serves you.
|
||||||
|
:open-urls ["http://localhost:3449/index.html"]}
|
||||||
|
|
||||||
|
:compiler {:main geocsv-lite.core
|
||||||
|
:asset-path "js/compiled/out"
|
||||||
|
:output-to "resources/public/js/compiled/geocsv_lite.js"
|
||||||
|
:output-dir "resources/public/js/compiled/out"
|
||||||
|
:source-map-timestamp true
|
||||||
|
;; To console.log CLJS data-structures make sure you enable devtools in Chrome
|
||||||
|
;; https://github.com/binaryage/cljs-devtools
|
||||||
|
:preloads [devtools.preload]}}
|
||||||
|
;; This next build is a compressed minified build for
|
||||||
|
;; production. You can build this with:
|
||||||
|
;; lein cljsbuild once min
|
||||||
|
{:id "min"
|
||||||
|
:source-paths ["src"]
|
||||||
|
:compiler {:output-to "resources/public/js/compiled/geocsv_lite.js"
|
||||||
|
:main geocsv-lite.core
|
||||||
|
:optimizations :advanced
|
||||||
|
:pretty-print false}}]}
|
||||||
|
|
||||||
|
:figwheel {;; :http-server-root "public" ;; default and assumes "resources"
|
||||||
|
;; :server-port 3449 ;; default
|
||||||
|
;; :server-ip "127.0.0.1"
|
||||||
|
|
||||||
|
:css-dirs ["resources/public/css"] ;; watch and update CSS
|
||||||
|
|
||||||
|
;; Start an nREPL server into the running figwheel process
|
||||||
|
;; :nrepl-port 7888
|
||||||
|
|
||||||
|
;; Server Ring Handler (optional)
|
||||||
|
;; if you want to embed a ring handler into the figwheel http-kit
|
||||||
|
;; server, this is for simple ring servers, if this
|
||||||
|
|
||||||
|
;; doesn't work for you just run your own server :) (see lein-ring)
|
||||||
|
|
||||||
|
;; :ring-handler hello_world.server/handler
|
||||||
|
|
||||||
|
;; To be able to open files in your editor from the heads up display
|
||||||
|
;; you will need to put a script on your path.
|
||||||
|
;; that script will have to take a file path and a line number
|
||||||
|
;; ie. in ~/bin/myfile-opener
|
||||||
|
;; #! /bin/sh
|
||||||
|
;; emacsclient -n +$2 $1
|
||||||
|
;;
|
||||||
|
;; :open-file-command "myfile-opener"
|
||||||
|
|
||||||
|
;; if you are using emacsclient you can just use
|
||||||
|
;; :open-file-command "emacsclient"
|
||||||
|
|
||||||
|
;; if you want to disable the REPL
|
||||||
|
;; :repl false
|
||||||
|
|
||||||
|
;; to configure a different figwheel logfile path
|
||||||
|
;; :server-logfile "tmp/logs/figwheel-logfile.log"
|
||||||
|
|
||||||
|
;; to pipe all the output to the repl
|
||||||
|
;; :server-logfile false
|
||||||
|
}
|
||||||
|
|
||||||
|
:profiles {:dev {:dependencies [[binaryage/devtools "0.9.10"]
|
||||||
|
[figwheel-sidecar "0.5.19"]]
|
||||||
|
;; need to add dev source path here to get user.clj loaded
|
||||||
|
:source-paths ["src" "dev"]
|
||||||
|
;; need to add the compliled assets to the :clean-targets
|
||||||
|
:clean-targets ^{:protect false} ["resources/public/js/compiled"
|
||||||
|
:target-path]}})
|
2
resources/public/css/style.css
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/* some style */
|
||||||
|
|
BIN
resources/public/img/credits/clojure-icon.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
resources/public/img/credits/github-logo-transparent.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
resources/public/img/credits/gnu.small.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
98
resources/public/img/map-pins/Alice-Blue-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#f0f8ff;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
BIN
resources/public/img/map-pins/Anchor-customer-pin.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
166
resources/public/img/map-pins/Anchor-customer-pin.svg
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Anchor-customer-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Anchor-customer-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="-80.735278"
|
||||||
|
inkscape:cy="184.16561"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#7fff00;fill-opacity:0.70588237;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g882"
|
||||||
|
transform="matrix(0.540519,0,0,0.540519,400.41384,206.99039)">
|
||||||
|
<g
|
||||||
|
id="g825">
|
||||||
|
<path
|
||||||
|
id="path821"
|
||||||
|
d="m 187.74,78.652 c -14.697,0 -26.655,-11.957 -26.655,-26.654 0,-14.698 11.958,-26.655 26.655,-26.655 14.698,0 26.655,11.957 26.655,26.655 0,14.697 -11.957,26.654 -26.655,26.654 z m 0,-45.309 c -10.286,0 -18.655,8.369 -18.655,18.655 0,10.286 8.369,18.654 18.655,18.654 10.287,0 18.655,-8.368 18.655,-18.654 0,-10.286 -8.368,-18.655 -18.655,-18.655 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path823"
|
||||||
|
d="m 186.24,372.479 c -0.298,0 -0.596,-0.033 -0.889,-0.1 -38.095,-8.683 -65.694,-29.495 -82.14,-45.426 C 91.462,315.571 83.658,305.142 79.6,299.175 l -7.074,10.099 c -0.749,1.069 -1.973,1.705 -3.276,1.705 -0.015,0 -0.03,0 -0.046,0 -1.321,-0.016 -2.549,-0.682 -3.282,-1.781 -12.837,-19.252 -17.461,-42.672 -13.37,-67.729 3.07,-18.805 9.875,-31.807 10.163,-32.351 0.683,-1.289 2.012,-2.104 3.471,-2.128 0.021,-0.001 0.043,-0.001 0.064,-0.001 1.434,0 2.76,0.768 3.473,2.016 18.548,32.459 38.716,51.604 46.788,57.192 1.19,0.823 1.844,2.226 1.709,3.666 -0.136,1.44 -1.037,2.696 -2.359,3.283 l -8.991,3.985 c 16.622,15.09 36.793,24.968 58.871,28.819 V 151.993 h -63.205 c -4.296,6.236 -10.842,9.894 -17.908,9.894 -12.553,0 -22.766,-11.616 -22.766,-25.894 0,-14.277 10.212,-25.893 22.766,-25.893 7.065,0 13.611,3.657 17.908,9.894 h 63.205 V 99.113 C 147.428,90.58 135.742,72.373 135.742,51.998 135.742,23.326 159.069,0 187.74,0 c 28.672,0 51.998,23.326 51.998,51.998 0,21.533 -13.144,40.631 -32.998,48.404 v 19.592 h 63.204 c 4.297,-6.236 10.843,-9.894 17.908,-9.894 12.553,0 22.765,11.615 22.765,25.893 0,14.277 -10.212,25.894 -22.765,25.894 -7.065,0 -13.611,-3.657 -17.908,-9.894 H 206.74 v 153.959 c 22.078,-3.852 42.248,-13.729 58.871,-28.819 l -8.991,-3.985 c -1.324,-0.588 -2.228,-1.845 -2.362,-3.287 -0.134,-1.442 0.522,-2.845 1.716,-3.666 8.067,-5.584 28.235,-24.73 46.783,-57.189 0.713,-1.248 2.04,-2.016 3.473,-2.016 0.022,0 0.044,0 0.065,0.001 1.458,0.023 2.788,0.839 3.471,2.128 0.288,0.544 7.092,13.546 10.163,32.351 4.091,25.057 -0.532,48.477 -13.37,67.729 -0.733,1.1 -1.961,1.766 -3.282,1.781 -0.015,0 -0.031,0 -0.046,0 -1.304,0 -2.527,-0.636 -3.276,-1.705 l -7.074,-10.099 c -4.059,5.968 -11.863,16.398 -23.612,27.778 -16.445,15.931 -44.044,36.743 -82.139,45.426 -0.294,0.066 -0.592,0.099 -0.89,0.099 z M 79.749,287.99 c 0.06,0 0.12,10e-4 0.18,0.004 1.367,0.061 2.608,0.817 3.289,2.005 0.335,0.581 34.26,58.277 103.021,74.375 68.89,-16.127 102.686,-73.792 103.021,-74.375 0.682,-1.188 1.922,-1.943 3.289,-2.005 1.367,-0.075 2.67,0.581 3.456,1.701 l 7.007,10.004 c 17.898,-31.707 8.232,-65.716 2.694,-79.955 -16.254,26.67 -31.861,41.966 -39.801,48.77 l 8.415,3.729 c 1.206,0.535 2.07,1.629 2.312,2.925 0.241,1.297 -0.172,2.629 -1.105,3.561 -19.722,19.722 -44.706,32.12 -72.251,35.855 -1.147,0.154 -2.3,-0.191 -3.169,-0.951 -0.87,-0.76 -1.369,-1.858 -1.369,-3.013 V 147.993 c 0,-2.209 1.791,-4 4,-4 h 69.418 c 1.445,0 2.777,0.779 3.485,2.038 2.77,4.919 7.333,7.855 12.208,7.855 8.142,0 14.765,-8.027 14.765,-17.894 0,-9.867 -6.624,-17.893 -14.765,-17.893 -4.875,0 -9.438,2.937 -12.208,7.855 -0.709,1.259 -2.041,2.038 -3.485,2.038 H 202.74 c -2.209,0 -4,-1.791 -4,-4 v -26.4 c 0,-1.728 1.109,-3.26 2.75,-3.8 18.092,-5.949 30.248,-22.744 30.248,-41.794 C 231.738,27.737 212.001,8 187.74,8 c -24.26,0 -43.997,19.737 -43.997,43.998 0,18.013 10.794,34.022 27.5,40.787 1.51,0.612 2.499,2.078 2.499,3.708 v 27.501 c 0,2.209 -1.791,4 -4,4 h -69.419 c -1.445,0 -2.777,-0.779 -3.486,-2.038 -2.769,-4.919 -7.332,-7.855 -12.207,-7.855 -8.142,0 -14.766,8.026 -14.766,17.893 0,9.867 6.624,17.894 14.766,17.894 4.875,0 9.438,-2.937 12.207,-7.855 0.709,-1.259 2.041,-2.038 3.486,-2.038 h 69.419 c 2.209,0 4,1.791 4,4 v 162.626 c 0,1.154 -0.499,2.253 -1.369,3.013 -0.87,0.759 -2.021,1.104 -3.169,0.951 -27.546,-3.734 -52.53,-16.133 -72.252,-35.855 -0.932,-0.932 -1.345,-2.264 -1.104,-3.561 0.242,-1.296 1.106,-2.39 2.312,-2.925 l 8.414,-3.729 c -7.939,-6.802 -23.542,-22.096 -39.794,-48.756 -5.521,14.262 -15.16,48.303 2.688,79.94 l 7.006,-10.003 c 0.75,-1.072 1.974,-1.706 3.275,-1.706 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g827" />
|
||||||
|
<g
|
||||||
|
id="g829" />
|
||||||
|
<g
|
||||||
|
id="g831" />
|
||||||
|
<g
|
||||||
|
id="g833" />
|
||||||
|
<g
|
||||||
|
id="g835" />
|
||||||
|
<g
|
||||||
|
id="g837" />
|
||||||
|
<g
|
||||||
|
id="g839" />
|
||||||
|
<g
|
||||||
|
id="g841" />
|
||||||
|
<g
|
||||||
|
id="g843" />
|
||||||
|
<g
|
||||||
|
id="g845" />
|
||||||
|
<g
|
||||||
|
id="g847" />
|
||||||
|
<g
|
||||||
|
id="g849" />
|
||||||
|
<g
|
||||||
|
id="g851" />
|
||||||
|
<g
|
||||||
|
id="g853" />
|
||||||
|
<g
|
||||||
|
id="g855" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
98
resources/public/img/map-pins/Antique-White-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#faebd7;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Aqua-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#00ffff;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Aquamarine-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#7fffd4;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Azure-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#f0ffff;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Beige-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#f5f5dc;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Bisque-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#ffe4c4;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Black-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Blanched-Almond-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#ffebcd;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Blank-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#dddddc;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Blue-Violet-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#8a2be2;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Blue-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#0000ff;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
BIN
resources/public/img/map-pins/Broadband-supplier-pin.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
213
resources/public/img/map-pins/Broadband-supplier-pin.svg
Normal file
|
@ -0,0 +1,213 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Broadband-supplier-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Broadband-supplier-pin.ng.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="-556.15585"
|
||||||
|
inkscape:cy="86.04423"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#c83737;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g900"
|
||||||
|
transform="matrix(0.42778362,0,0,0.42778362,404.47064,205.47142)"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
id="g837"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
id="g835"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<g
|
||||||
|
id="g833"
|
||||||
|
style="fill:#000000;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
id="path821"
|
||||||
|
d="m 197.945,133.781 c -34.002,-23.38 -79.25,-22.763 -112.595,1.533 -3.348,2.439 -4.084,7.131 -1.645,10.479 1.468,2.015 3.752,3.084 6.068,3.084 1.532,0 3.078,-0.469 4.411,-1.439 28.211,-20.556 66.494,-21.079 95.262,-1.297 3.414,2.347 8.083,1.483 10.43,-1.931 2.347,-3.413 1.482,-8.082 -1.931,-10.429 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path823"
|
||||||
|
d="m 177.736,160.474 c -21.796,-14.987 -50.802,-14.594 -72.178,0.982 -3.348,2.439 -4.084,7.131 -1.645,10.479 1.468,2.015 3.752,3.084 6.068,3.084 1.532,0 3.078,-0.468 4.41,-1.439 16.244,-11.835 38.284,-12.134 54.846,-0.746 3.414,2.346 8.083,1.483 10.43,-1.931 2.348,-3.413 1.483,-8.082 -1.931,-10.429 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path825"
|
||||||
|
d="m 157.906,189.313 c -4.541,-3.121 -9.919,-4.771 -15.555,-4.771 -5.83,0 -11.576,1.848 -16.181,5.202 -3.348,2.438 -4.084,7.13 -1.646,10.478 1.468,2.016 3.752,3.085 6.068,3.085 1.533,-10e-4 3.078,-0.468 4.411,-1.44 2.058,-1.499 4.667,-2.325 7.348,-2.325 2.551,0 5.058,0.758 7.058,2.133 3.414,2.348 8.083,1.481 10.429,-1.932 2.346,-3.414 1.481,-8.083 -1.932,-10.43 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path827"
|
||||||
|
d="m 335.232,30 c -4.142,0 -7.5,3.357 -7.5,7.5 v 18 c 0,4.143 3.358,7.5 7.5,7.5 4.142,0 7.5,-3.357 7.5,-7.5 v -18 c 0,-4.143 -3.357,-7.5 -7.5,-7.5 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path829"
|
||||||
|
d="m 365.232,30 c -4.142,0 -7.5,3.357 -7.5,7.5 v 18 c 0,4.143 3.358,7.5 7.5,7.5 4.142,0 7.5,-3.357 7.5,-7.5 v -18 c 0,-4.143 -3.357,-7.5 -7.5,-7.5 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
id="path831"
|
||||||
|
d="m 410.232,78 h -7.5 V 7.5 c 0,-4.143 -3.358,-7.5 -7.5,-7.5 h -90 c -4.142,0 -7.5,3.357 -7.5,7.5 V 78 h -7.5 c -4.142,0 -7.5,3.357 -7.5,7.5 v 90 c 0,19.837 15.484,36.126 35,37.418 V 260.5 c 0,4.143 3.358,7.5 7.5,7.5 h 2.5 v 75.75 c 0,44.802 -36.449,81.25 -81.25,81.25 -44.801,0 -81.25,-36.448 -81.25,-81.25 V 320 h 58.463 c 4.142,0 7.5,-3.357 7.5,-7.5 V 7.5 c 0,-4.143 -3.358,-7.5 -7.5,-7.5 H 59.768 c -4.142,0 -7.5,3.357 -7.5,7.5 v 305 c 0,4.143 3.358,7.5 7.5,7.5 h 60.465 v 23.75 c 0,69.614 56.636,126.25 126.25,126.25 69.614,0 126.25,-56.636 126.25,-126.25 V 268 h 2.5 c 4.142,0 7.5,-3.357 7.5,-7.5 v -47.582 c 19.516,-1.292 35,-17.581 35,-37.418 v -90 C 417.732,81.357 414.375,78 410.232,78 Z m -97.5,-63 h 75 v 63 h -75 z M 67.268,305 V 15 h 148.928 v 290 z m 290.464,38.75 c 0,61.344 -49.907,111.25 -111.25,111.25 -61.343,0 -111.25,-49.906 -111.25,-111.25 V 320 h 15 v 23.75 c 0,53.072 43.178,96.25 96.25,96.25 53.072,0 96.25,-43.178 96.25,-96.25 V 268 h 15 z m 45,-168.25 c 0,12.406 -10.093,22.5 -22.5,22.5 h -25 c -4.142,0 -7.5,3.357 -7.5,7.5 0,4.143 3.358,7.5 7.5,7.5 h 12.5 v 40 h -35 v -47.5 c 0,-4.143 -3.358,-7.5 -7.5,-7.5 h -5 c -12.407,0 -22.5,-10.094 -22.5,-22.5 V 93 h 105 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g839"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g841"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g843"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g845"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g847"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g849"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g851"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g853"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g855"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g857"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g859"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g861"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g863"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g865"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<g
|
||||||
|
id="g867"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.9 KiB |
98
resources/public/img/map-pins/Brown-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#a52a2a;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
98
resources/public/img/map-pins/Burlywood-pin.svg
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Blank-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.919596"
|
||||||
|
inkscape:cx="23.755716"
|
||||||
|
inkscape:cy="28.082932"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#deb887;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
BIN
resources/public/img/map-pins/Champion-pin.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
154
resources/public/img/map-pins/Champion-pin.svg
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Champion-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Champion-pin.png"
|
||||||
|
inkscape:export-xdpi="95.965683"
|
||||||
|
inkscape:export-ydpi="95.965683"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="9.405576"
|
||||||
|
inkscape:cy="11.480203"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#00ffff;fill-opacity:0.70588237;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
inkscape:export-xdpi="95.965683"
|
||||||
|
inkscape:export-ydpi="95.965683" />
|
||||||
|
<g
|
||||||
|
id="g869"
|
||||||
|
transform="matrix(0.05075218,0,0,0.05075218,391.6632,466.58012)">
|
||||||
|
<path
|
||||||
|
id="path814"
|
||||||
|
d="M 311.88207,35.593181 V 5.8203806 H 33.135963 V 35.593181 h -95.129292 v 23.231787 c 0,76.479742 29.787193,123.584472 54.7723223,149.620292 21.9154717,22.82747 43.7576687,33.83297 53.0124377,37.80939 17.746703,37.03347 52.55055,64.33197 94.242149,71.71694 v 85.07897 H 80.828184 v 58.07227 H 264.19247 v -58.07227 h -59.21325 v -85.08028 c 41.69552,-7.38497 76.50591,-34.68478 94.24869,-71.71694 9.24823,-3.97511 31.09958,-14.98061 53.00851,-37.80939 24.99037,-26.03451 54.77756,-73.13924 54.77756,-149.620291 V 35.593181 Z M 33.135963,182.98647 C 13.354597,165.02387 -9.1117378,133.71362 -14.396626,82.052829 h 47.532589 z m 181.643647,11.57206 -42.26863,-22.22165 -42.26733,22.22165 8.06407,-47.06808 -34.18887,-33.33314 47.2565,-6.86028 21.13432,-42.820804 21.12647,42.820804 47.26043,6.86028 -34.19411,33.33314 z m 97.10246,-11.49617 V 82.052829 h 47.53651 c -5.26133,51.768081 -27.71327,83.065251 -47.53651,101.009531 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="stroke-width:1.30846441" />
|
||||||
|
<g
|
||||||
|
id="g816">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g818">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g820">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g822">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g824">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g826">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g828">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g830">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g832">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g834">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g836">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g838">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g840">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g842">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g844">
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
BIN
resources/public/img/map-pins/Developer-pin.png
Normal file
After Width: | Height: | Size: 2 KiB |
181
resources/public/img/map-pins/Developer-pin.svg
Normal file
|
@ -0,0 +1,181 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Developer-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Developer-pin.png"
|
||||||
|
inkscape:export-xdpi="95.965683"
|
||||||
|
inkscape:export-ydpi="95.965683"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="-36.012369"
|
||||||
|
inkscape:cy="19.198946"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#ffff00;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g5786"
|
||||||
|
transform="matrix(0.02456532,0,0,0.02456532,387.81701,466.57355)">
|
||||||
|
<g
|
||||||
|
id="XMLID_291_">
|
||||||
|
<path
|
||||||
|
d="m 535.9,512.1 c 20.5,4.8 41.2,-8 45.9,-28.7 2.2,-9.8 0.3,-19.5 -4.3,-27.6 l 18.4,-75.5 23,5.6 c 4.9,1.2 10.1,0 14.1,-3.3 3.9,-3.3 6,-8.2 5.6,-13.3 L 628.1,215.2 c -0.3,-3.7 -2.9,-6.9 -6.5,-7.8 -3.6,-0.9 -7.4,0.7 -9.4,3.9 l -80.4,131.9 c -2.7,4.3 -3.1,9.7 -1.1,14.4 2,4.7 6,8.2 11,9.4 l 23,5.6 -15.6,63.9 L 468.7,418 378.1,285.4 c -10.8,-15.9 -27,-17 -46.3,-17 0,216.4 0,202.7 0,300.5 h 46 c 0,146.1 0,9.3 0,343 H 285.9 V 670.3 h -33.5 v 241.6 h -91.9 c 0,-332.7 0,-197.2 0,-343 h 45.9 c 0,-97.8 0,-84.1 0,-300.5 -22.2,0 -40.3,2.5 -49.5,22.7 L 29.3,570.7 c -8.8,19.2 -0.3,41.9 19,50.7 19.1,8.8 41.9,0.4 50.7,-18.9 l 61.7,-135.1 v 69.4 h -0.1 c -17.7,0 -32.1,14.4 -32.1,32.1 v 343 c 0,17.7 14.4,32.1 32.1,32.1 0,25.4 20.6,45.9 45.9,45.9 25.4,0 46,-20.6 46,-45.9 6.1,0 11.8,-1.7 16.7,-4.7 4.9,3 10.6,4.7 16.7,4.7 0,25.4 20.6,45.9 45.9,45.9 25.4,0 46,-20.6 46,-45.9 17.7,0 32.1,-14.4 32.1,-32.1 v -343 c 0,-17.7 -14.4,-32.1 -32.1,-32.1 h -0.1 V 420.5 l 36.2,53.1 c 5.4,8 13.7,13.6 23,15.7 z"
|
||||||
|
id="XMLID_304_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
height="129.2"
|
||||||
|
width="61.099998"
|
||||||
|
y="268.39999"
|
||||||
|
x="238.60001"
|
||||||
|
id="XMLID_303_" />
|
||||||
|
<path
|
||||||
|
d="m 179.8,162.7 c 0.5,49 40.3,88.5 89.4,88.5 49.1,0 88.9,-39.6 89.4,-88.5 17.3,-0.5 31.3,-14.5 31.3,-32 C 389.9,64.2 335.7,10 269.2,10 202.6,10 148.4,64.2 148.4,130.7 c 0,17.5 14,31.5 31.4,32 z M 204.9,70 v 9.1 c 0,8.9 7.2,16.1 16.1,16.1 8.9,0 16,-7.2 16,-16.1 V 48.4 c 5.2,-2 10.5,-3.6 16.1,-4.6 v 35.3 c 0,8.9 7.2,16.1 16.1,16.1 8.8,0 16,-7.2 16,-16.1 V 43.7 c 5.6,1 10.9,2.6 16,4.6 V 79 c 0,8.9 7.2,16.1 16.1,16.1 8.9,0 16.1,-7.2 16.1,-16.1 v -9 c 15,15.9 24.3,37.2 24.3,60.7 H 180.5 c 0,-23.6 9.4,-44.8 24.4,-60.7 z"
|
||||||
|
id="XMLID_300_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 701.1,881.6 H 503 c -8.9,0 -16.1,7.2 -16.1,16.1 v 71.8 c 0,8.9 7.2,16.1 16.1,16.1 h 198.1 c 8.8,0 16,-7.2 16,-16.1 v -71.8 c 0.1,-8.9 -7.1,-16.1 -16,-16.1 z"
|
||||||
|
id="XMLID_299_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 958.1,881.6 H 760 c -8.9,0 -16.1,7.2 -16.1,16.1 v 71.8 c 0,8.9 7.2,16.1 16.1,16.1 h 198.1 c 8.8,0 16,-7.2 16,-16.1 v -71.8 c 0.1,-8.9 -7.2,-16.1 -16,-16.1 z"
|
||||||
|
id="XMLID_298_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 958.1,624.7 H 760 c -8.9,0 -16.1,7.2 -16.1,16.1 v 71.8 c 0,8.9 7.2,16.1 16.1,16.1 h 198.1 c 8.8,0 16,-7.2 16,-16.1 v -71.8 c 0.1,-9 -7.2,-16.1 -16,-16.1 z"
|
||||||
|
id="XMLID_297_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 701.1,624.7 H 503 c -8.9,0 -16.1,7.2 -16.1,16.1 v 71.8 c 0,8.9 7.2,16.1 16.1,16.1 h 198.1 c 8.8,0 16,-7.2 16,-16.1 v -71.8 c 0.1,-9 -7.1,-16.1 -16,-16.1 z"
|
||||||
|
id="XMLID_296_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 615.4,769.2 V 841 c 0,8.9 7.2,16.1 16.1,16.1 h 198.1 c 8.8,0 16.1,-7.2 16.1,-16.1 v -71.8 c 0,-8.9 -7.2,-16.1 -16.1,-16.1 H 631.5 c -8.9,0 -16.1,7.2 -16.1,16.1 z"
|
||||||
|
id="XMLID_295_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 615.4,512.2 V 584 c 0,8.9 7.2,16.1 16.1,16.1 h 198.1 c 8.8,0 16.1,-7.2 16.1,-16.1 v -71.8 c 0,-8.9 -7.2,-16.1 -16.1,-16.1 H 631.5 c -8.9,0.1 -16.1,7.3 -16.1,16.1 z"
|
||||||
|
id="XMLID_294_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 958.1,753.1 h -75 c -8.9,0 -16,7.2 -16,16.1 V 841 c 0,8.9 7.2,16.1 16,16.1 h 75 c 8.8,0 16,-7.2 16,-16.1 v -71.8 c 0.1,-8.9 -7.2,-16.1 -16,-16.1 z"
|
||||||
|
id="XMLID_293_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 958.1,496.2 h -75 c -8.9,0 -16,7.2 -16,16.1 V 584 c 0,8.9 7.2,16.1 16,16.1 h 75 c 8.8,0 16,-7.2 16,-16.1 v -71.8 c 0.1,-8.8 -7.2,-16 -16,-16 z"
|
||||||
|
id="XMLID_292_"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5756" />
|
||||||
|
<g
|
||||||
|
id="g5758" />
|
||||||
|
<g
|
||||||
|
id="g5760" />
|
||||||
|
<g
|
||||||
|
id="g5762" />
|
||||||
|
<g
|
||||||
|
id="g5764" />
|
||||||
|
<g
|
||||||
|
id="g5766" />
|
||||||
|
<g
|
||||||
|
id="g5768" />
|
||||||
|
<g
|
||||||
|
id="g5770" />
|
||||||
|
<g
|
||||||
|
id="g5772" />
|
||||||
|
<g
|
||||||
|
id="g5774" />
|
||||||
|
<g
|
||||||
|
id="g5776" />
|
||||||
|
<g
|
||||||
|
id="g5778" />
|
||||||
|
<g
|
||||||
|
id="g5780" />
|
||||||
|
<g
|
||||||
|
id="g5782" />
|
||||||
|
<g
|
||||||
|
id="g5784" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.8 KiB |
BIN
resources/public/img/map-pins/Further-education-pin.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
118
resources/public/img/map-pins/Further-education-pin.svg
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Further-education-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Further-education-pin.png"
|
||||||
|
inkscape:export-xdpi="95.999985"
|
||||||
|
inkscape:export-ydpi="95.999985"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="20.179083"
|
||||||
|
inkscape:cy="6.9983483"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#212178;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.05627646,0,0,0.05627646,387.13409,465.52583)"
|
||||||
|
id="g5080">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2"
|
||||||
|
d="m 14.277344,128.39062 24.320312,14.30469 c 5.894532,-5 13.125,-8.17187 20.796875,-9.1289 L 231.29297,112.44922 c 4.38672,-0.53906 8.3789,2.57812 8.91797,6.96484 0.53906,4.39063 -2.57813,8.38282 -6.96875,8.92188 L 61.347656,149.45703 c -2.585937,0.33594 -5.101562,1.09375 -7.441406,2.24609 L 232.19531,256.78516 450.11719,128.39063 232.19531,0 Z m 0,0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path4"
|
||||||
|
d="M 228.13281,272.96875 72.195312,181.10547 v 83.28515 c 0,22.02344 19.039063,43.4336 52.234378,58.73829 34.02343,14.58984 70.74609,21.83593 107.76562,21.26171 37.01563,0.57813 73.73828,-6.66796 107.76172,-21.26171 33.19922,-15.30469 52.23828,-36.71485 52.23828,-58.73829 v -83.28515 l -155.93359,91.86328 c -2.50781,1.47656 -5.62109,1.47656 -8.12891,0 z m 0,0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path6"
|
||||||
|
d="m 48.195312,440.39062 -16,-88 -32,104 z m 0,0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path8"
|
||||||
|
d="m 56.195312,328.39062 c -0.01562,-10.14062 -6.429687,-19.16796 -16,-22.52734 V 173.27344 c 0.02344,-3.36719 0.757813,-6.69141 2.160157,-9.75391 2.304687,-5.16015 6.355469,-9.33984 11.441406,-11.80859 l -15.25,-9.00781 c -4.144531,3.51562 -7.535156,7.83984 -9.957031,12.70312 -2.847656,5.52734 -4.351563,11.64844 -4.394532,17.86719 V 305.86328 C 12.71875,309.95313 6.136719,322 8.898438,333.86719 c 2.765624,11.86719 13.992187,19.76953 26.09375,18.36719 12.101562,-1.39844 21.226562,-11.66016 21.203124,-23.84376 z m 0,0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
BIN
resources/public/img/map-pins/Higher-education-pin.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
118
resources/public/img/map-pins/Higher-education-pin.svg
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Higher-education-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Higher-education-pin.png"
|
||||||
|
inkscape:export-xdpi="95.999985"
|
||||||
|
inkscape:export-ydpi="95.999985"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="20.179083"
|
||||||
|
inkscape:cy="6.9983483"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#a02c2c;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.05627646,0,0,0.05627646,387.13409,465.52583)"
|
||||||
|
id="g5080">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2"
|
||||||
|
d="m 14.277344,128.39062 24.320312,14.30469 c 5.894532,-5 13.125,-8.17187 20.796875,-9.1289 L 231.29297,112.44922 c 4.38672,-0.53906 8.3789,2.57812 8.91797,6.96484 0.53906,4.39063 -2.57813,8.38282 -6.96875,8.92188 L 61.347656,149.45703 c -2.585937,0.33594 -5.101562,1.09375 -7.441406,2.24609 L 232.19531,256.78516 450.11719,128.39063 232.19531,0 Z m 0,0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path4"
|
||||||
|
d="M 228.13281,272.96875 72.195312,181.10547 v 83.28515 c 0,22.02344 19.039063,43.4336 52.234378,58.73829 34.02343,14.58984 70.74609,21.83593 107.76562,21.26171 37.01563,0.57813 73.73828,-6.66796 107.76172,-21.26171 33.19922,-15.30469 52.23828,-36.71485 52.23828,-58.73829 v -83.28515 l -155.93359,91.86328 c -2.50781,1.47656 -5.62109,1.47656 -8.12891,0 z m 0,0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path6"
|
||||||
|
d="m 48.195312,440.39062 -16,-88 -32,104 z m 0,0" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path8"
|
||||||
|
d="m 56.195312,328.39062 c -0.01562,-10.14062 -6.429687,-19.16796 -16,-22.52734 V 173.27344 c 0.02344,-3.36719 0.757813,-6.69141 2.160157,-9.75391 2.304687,-5.16015 6.355469,-9.33984 11.441406,-11.80859 l -15.25,-9.00781 c -4.144531,3.51562 -7.535156,7.83984 -9.957031,12.70312 -2.847656,5.52734 -4.351563,11.64844 -4.394532,17.86719 V 305.86328 C 12.71875,309.95313 6.136719,322 8.898438,333.86719 c 2.765624,11.86719 13.992187,19.76953 26.09375,18.36719 12.101562,-1.39844 21.226562,-11.66016 21.203124,-23.84376 z m 0,0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
BIN
resources/public/img/map-pins/Investor-pin.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
162
resources/public/img/map-pins/Investor-pin.svg
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Investor-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Investor-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="-560.19646"
|
||||||
|
inkscape:cy="82.00362"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#ff7f2a;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g879"
|
||||||
|
transform="matrix(0.3328653,0,0,0.3328653,403.1429,206.51503)">
|
||||||
|
<g
|
||||||
|
id="g823">
|
||||||
|
<path
|
||||||
|
id="path821"
|
||||||
|
d="m 515.77,431.781 c 0,0 -8.917,-201.817 -135.072,-260.518 9.256,-14.101 18.176,-28.427 26.626,-43.018 11.122,-19.209 21.523,-39.136 28.899,-60.119 6.369,-18.114 5.823,-47.837 -11.421,-60.579 -14.977,-11.067 -36.904,-7.818 -53.604,-3.712 -13.713,3.372 -26.816,8.892 -39.847,14.25 -9.108,3.749 -18.35,7.339 -27.793,10.154 -10.094,3.008 -18.161,5.486 -31.057,-1.625 -3.358,-1.854 -6.701,-3.715 -10.149,-5.399 -10.489,-5.129 -20.946,-8.324 -32.719,-8.279 -21.403,0.073 -43.208,11.615 -53.512,30.642 -9.077,16.763 -7.027,32.818 0.289,49.305 10.566,23.817 29.965,44.772 46.745,64.328 3.586,4.178 7.213,8.324 10.879,12.44 C 104.478,226.17 95.389,431.78 95.389,431.78 c 0,0 -16.814,180.221 210.192,180.221 239.387,0 210.189,-180.22 210.189,-180.22 z m -143.939,24.066 c -2.696,7.371 -6.609,14.092 -11.651,19.969 -5.034,5.884 -11.17,10.875 -18.282,14.815 -4.124,2.308 -8.558,4.169 -13.267,5.604 v 11.804 c 0,10.293 -8.349,18.649 -18.654,18.649 h -2.006 c -10.307,0 -18.658,-8.356 -18.658,-18.649 v -9.798 c -3.489,-0.672 -6.883,-1.582 -10.145,-2.739 -6.871,-2.407 -13.223,-5.74 -18.888,-9.89 -5.66,-4.163 -10.673,-9.113 -14.864,-14.721 -2.996,-4.008 -5.564,-8.368 -7.631,-12.951 -3.62,-8.051 -1.102,-17.527 6.015,-22.739 l 3.089,-2.235 c 4.302,-3.14 9.736,-4.295 14.934,-3.157 5.211,1.121 9.679,4.414 12.297,9.048 1,1.778 2.109,3.46 3.336,4.986 2.252,2.858 4.828,5.314 7.658,7.272 2.814,1.955 5.92,3.504 9.237,4.579 3.229,1.039 6.616,1.579 10.071,1.579 4.569,0 8.65,-0.648 12.103,-1.912 3.225,-1.191 5.93,-2.795 8.031,-4.797 2.018,-1.921 3.598,-4.331 4.695,-7.172 1.22,-3.105 1.82,-6.702 1.82,-10.724 0,-4.001 -0.674,-7.226 -2.04,-9.577 -1.614,-2.827 -3.817,-5.299 -6.515,-7.345 -3.283,-2.494 -7.09,-4.721 -11.35,-6.631 -5.08,-2.285 -10.297,-4.547 -15.513,-6.75 -5.619,-2.366 -11.224,-4.964 -16.623,-7.733 -6.129,-3.137 -11.714,-7.021 -16.583,-11.547 -5.204,-4.846 -9.434,-10.717 -12.578,-17.448 -3.229,-6.947 -4.863,-15.182 -4.863,-24.496 0,-7.546 1.351,-14.795 4.03,-21.529 2.664,-6.702 6.483,-12.781 11.34,-18.047 4.845,-5.245 10.726,-9.633 17.506,-13.053 3.598,-1.803 7.419,-3.288 11.432,-4.443 v -10.045 c 0,-10.293 8.351,-18.648 18.658,-18.648 h 2.006 c 10.305,0 18.655,8.354 18.655,18.648 v 9.354 c 6.964,1.672 13.396,4.261 19.223,7.776 7.026,4.219 13.094,9.55 18.079,15.853 5.513,7.009 5.323,16.933 -0.481,23.698 l -2.991,3.496 c -3.443,3.999 -8.409,6.372 -13.699,6.497 -5.296,0.124 -10.356,-1.975 -13.988,-5.811 -0.784,-0.818 -1.592,-1.599 -2.419,-2.341 -2.138,-1.927 -4.438,-3.606 -6.837,-4.983 -2.266,-1.305 -4.704,-2.356 -7.208,-3.086 -2.332,-0.679 -4.714,-1.027 -7.097,-1.027 -3.897,0 -7.352,0.522 -10.241,1.548 -2.696,0.944 -4.945,2.211 -6.673,3.746 -1.662,1.487 -2.885,3.135 -3.754,5.037 -0.84,1.856 -1.255,3.836 -1.255,6.046 0,3.441 0.618,6.178 1.824,8.113 1.574,2.543 3.737,4.785 6.442,6.679 3.36,2.366 7.281,4.518 11.665,6.398 5.16,2.225 10.435,4.494 15.812,6.794 5.706,2.456 11.379,5.19 16.865,8.155 6.19,3.321 11.828,7.493 16.739,12.365 5.2,5.163 9.402,11.389 12.496,18.539 3.13,7.242 4.724,15.922 4.724,25.769 0,8.061 -1.364,15.88 -4.028,23.208 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g825" />
|
||||||
|
<g
|
||||||
|
id="g827" />
|
||||||
|
<g
|
||||||
|
id="g829" />
|
||||||
|
<g
|
||||||
|
id="g831" />
|
||||||
|
<g
|
||||||
|
id="g833" />
|
||||||
|
<g
|
||||||
|
id="g835" />
|
||||||
|
<g
|
||||||
|
id="g837" />
|
||||||
|
<g
|
||||||
|
id="g839" />
|
||||||
|
<g
|
||||||
|
id="g841" />
|
||||||
|
<g
|
||||||
|
id="g843" />
|
||||||
|
<g
|
||||||
|
id="g845" />
|
||||||
|
<g
|
||||||
|
id="g847" />
|
||||||
|
<g
|
||||||
|
id="g849" />
|
||||||
|
<g
|
||||||
|
id="g851" />
|
||||||
|
<g
|
||||||
|
id="g853" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.6 KiB |
BIN
resources/public/img/map-pins/Landowner-pin.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
169
resources/public/img/map-pins/Landowner-pin.svg
Normal file
|
@ -0,0 +1,169 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Landowner-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/youyesyet/resources/public/img/map-pins/Landowner-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="-351.09488"
|
||||||
|
inkscape:cy="86.04423"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#88aa00;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g1588"
|
||||||
|
transform="matrix(3.5141182,0,0,3.5141182,405.99846,213.75132)">
|
||||||
|
<g
|
||||||
|
id="g1530">
|
||||||
|
<g
|
||||||
|
id="g1528">
|
||||||
|
<path
|
||||||
|
id="path1524"
|
||||||
|
d="m 48.19,31.889 c 0,-2.863 -2.344,-5.453 -6.124,-7.324 0.092,1.926 0.246,4.054 0.494,6.449 l 0.021,0.219 -0.094,0.198 c -0.098,0.203 -2.545,5.015 -15.217,5.015 -0.432,0 -0.781,-0.35 -0.781,-0.781 0,-0.022 0.012,-0.043 0.014,-0.064 0.034,-0.396 0.353,-0.709 0.756,-0.715 0.004,0 0.008,-0.002 0.012,-0.002 0.571,0 1.111,-0.014 1.638,-0.032 C 37.801,34.53 40.457,31.625 40.978,30.907 40.711,28.272 40.55,25.938 40.467,23.857 40.105,14.663 41.305,10.485 42.013,8.026 42.64,5.853 42.736,5.519 41.232,4.013 38.37,1.152 32.217,0.331 28.912,0.096 28.362,0.056 27.893,0.034 27.53,0.02 27.054,0.002 26.761,0.001 26.713,0 v 0.005 c -3.627,-0.031 -10.78,0.331 -13.904,3.455 -3.843,3.843 1.31,2.876 0.512,20.847 -4.109,1.89 -6.695,4.583 -6.695,7.582 0,5.706 9.305,10.332 20.783,10.332 C 38.885,42.222 48.19,37.595 48.19,31.889 Z M 13.909,7.652 c 0.183,-0.391 0.647,-0.56 1.04,-0.375 0.028,0.013 0.691,0.316 1.832,0.707 2.071,0.71 5.727,1.708 10.083,1.807 0.666,0.014 1.35,0.008 2.045,-0.024 2.704,-0.124 5.605,-0.636 8.519,-1.782 0.548,-0.215 1.093,-0.444 1.638,-0.705 0.389,-0.19 0.855,-0.022 1.042,0.368 0.186,0.39 0.021,0.855 -0.368,1.042 -3.717,1.78 -7.435,2.521 -10.832,2.679 -0.485,0.023 -0.963,0.034 -1.434,0.034 -0.199,0 -0.391,-0.008 -0.585,-0.013 C 19.872,11.259 14.619,8.85 14.283,8.692 13.894,8.507 13.726,8.043 13.909,7.652 Z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path1526"
|
||||||
|
d="m 11.902,46.671 c -0.021,0.179 -0.031,0.352 -0.038,0.521 -0.621,0.188 -1.169,0.724 -1.156,1.537 0.031,1.944 0.848,3.24 2.138,3.792 0.96,2.314 3.209,2.919 5.703,1.626 1.497,-0.776 2.839,-1.805 4.198,-2.794 0.469,-0.342 1.979,-1.668 3.005,-2.053 0.148,-0.013 0.291,-0.048 0.426,-0.103 0.065,-0.004 0.12,0.011 0.177,0.021 0.198,0.094 0.418,0.141 0.654,0.133 0.235,0.008 0.456,-0.039 0.653,-0.133 0.059,-0.009 0.112,-0.024 0.179,-0.021 0.135,0.055 0.277,0.09 0.426,0.103 1.025,0.385 2.536,1.711 3.005,2.053 1.359,0.99 2.701,2.018 4.197,2.794 2.494,1.293 4.743,0.688 5.704,-1.626 1.288,-0.552 2.106,-1.848 2.137,-3.792 0.015,-0.813 -0.534,-1.349 -1.155,-1.537 -0.006,-0.169 -0.018,-0.342 -0.039,-0.521 -0.215,-1.845 -3.135,-1.865 -2.917,0 0.179,1.526 -0.049,1.943 -1.626,1.611 -1.519,-0.319 -2.977,-0.84 -4.449,-1.324 -1.861,-0.612 -4.228,-1.521 -6.115,-0.702 -1.888,-0.819 -4.254,0.09 -6.116,0.702 -1.471,0.484 -2.929,1.005 -4.449,1.324 -1.576,0.332 -1.805,-0.085 -1.626,-1.611 0.222,-1.865 -2.699,-1.844 -2.916,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1532" />
|
||||||
|
<g
|
||||||
|
id="g1534" />
|
||||||
|
<g
|
||||||
|
id="g1536" />
|
||||||
|
<g
|
||||||
|
id="g1538" />
|
||||||
|
<g
|
||||||
|
id="g1540" />
|
||||||
|
<g
|
||||||
|
id="g1542" />
|
||||||
|
<g
|
||||||
|
id="g1544" />
|
||||||
|
<g
|
||||||
|
id="g1546" />
|
||||||
|
<g
|
||||||
|
id="g1548" />
|
||||||
|
<g
|
||||||
|
id="g1550" />
|
||||||
|
<g
|
||||||
|
id="g1552" />
|
||||||
|
<g
|
||||||
|
id="g1554" />
|
||||||
|
<g
|
||||||
|
id="g1556" />
|
||||||
|
<g
|
||||||
|
id="g1558" />
|
||||||
|
<g
|
||||||
|
id="g1560" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.1 KiB |
BIN
resources/public/img/map-pins/Operator-pin.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
163
resources/public/img/map-pins/Operator-pin.svg
Normal file
|
@ -0,0 +1,163 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Operator-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Operator-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="-198.59155"
|
||||||
|
inkscape:cy="63.118072"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#00ff00;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98" />
|
||||||
|
<g
|
||||||
|
transform="matrix(3.060171,0,0,3.060171,385.23861,206.1161)"
|
||||||
|
id="g879">
|
||||||
|
<path
|
||||||
|
style="fill:#010002"
|
||||||
|
d="m 45.957,18.065 c -0.008,-0.012 -0.016,-0.019 -0.023,-0.028 -0.551,-0.88 -1.246,-1.66 -2.06,-2.299 v 7.586 l 3.431,5.059 c 0.955,1.352 0.879,4.329 0,6.336 L 47.106,30.422 42.7,23.673 V 14.95 c -0.507,-0.283 -1.043,-0.518 -1.605,-0.7 v 4.705 h -5.516 v -4.702 c -0.563,0.182 -1.101,0.417 -1.606,0.701 v 8.721 l -4.41,6.749 -0.198,30.266 c 0,1.817 1.475,3.293 3.292,3.293 1.817,0 3.293,-1.476 3.293,-3.293 0,0 1.563,-21.543 2.383,-21.543 0.815,0 2.332,21.543 2.332,21.543 0,1.817 1.476,3.293 3.291,3.293 1.822,0 3.294,-1.476 3.294,-3.293 l 0.029,-21.433 c 1.006,0.484 2.359,0.42 3.217,-0.69 4.219,-5.471 -0.887,-15.654 -4.539,-20.502 z m -9.223,9.022 c -0.568,0 -1.027,-0.462 -1.027,-1.03 0,-0.568 0.459,-1.029 1.027,-1.029 0.568,0 1.029,0.461 1.029,1.029 0.002,0.569 -0.458,1.03 -1.029,1.03 z m 3.198,0 c -0.565,0 -1.027,-0.462 -1.027,-1.03 0,-0.568 0.462,-1.029 1.027,-1.029 0.569,0 1.03,0.461 1.03,1.029 0,0.569 -0.461,1.03 -1.03,1.03 z"
|
||||||
|
id="path2"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#010002"
|
||||||
|
d="m 32.794,23.323 v -7.581 c -0.949,0.749 -8.955,11.645 -9.261,12.262 -1.37,0.389 -2.756,0.708 -4.15,0.998 V 23 c 3.465,-0.329 6.185,-3.252 6.185,-6.802 v -5.414 h -1.176 v 5.414 c 0,2.086 -1.138,3.907 -2.822,4.89 V 10.775 h -1.176 v 10.833 c -0.855,0.267 -2.322,0.283 -3.234,0.024 V 10.772 H 15.985 V 21.141 C 14.25,20.172 13.073,18.32 13.073,16.198 v -5.414 h -1.176 v 5.414 c 0,3.578 2.765,6.518 6.271,6.807 v 6.245 c -0.021,0.004 -0.042,0.008 -0.062,0.012 -2.533,0.506 -1.986,3.862 0.062,4.48 V 63.98 h 1.214 V 33.793 c 2.239,-0.447 4.467,-0.921 6.644,-1.624 1.288,-0.418 2.224,-1.86 6.768,-8.846 z"
|
||||||
|
id="path4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#010002"
|
||||||
|
d="m 36.164,18.366 h 4.338 v -4.283 c -0.693,-0.174 -1.418,-0.269 -2.164,-0.269 -0.75,0 -1.478,0.096 -2.174,0.27 z"
|
||||||
|
id="path6"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<circle
|
||||||
|
r="4.8714366"
|
||||||
|
cy="7.5912037"
|
||||||
|
cx="38.29491"
|
||||||
|
id="path860"
|
||||||
|
style="opacity:1;fill:none;fill-opacity:0.70403586;stroke:#020000;stroke-width:1.28299999;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
style="stroke-width:1.28299999;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
transform="translate(0.23963355,1)"
|
||||||
|
id="g870">
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.28299999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 40,5.9830017 h -2 v 2 1"
|
||||||
|
id="path864"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.28299999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 36,5.9830017 h 1"
|
||||||
|
id="path866"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.1 KiB |
BIN
resources/public/img/map-pins/Other-key-customers-pin.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
162
resources/public/img/map-pins/Other-key-customers-pin.svg
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Other-key-customers-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Other-key-customers-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="-560.19646"
|
||||||
|
inkscape:cy="86.04423"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#800080;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g879"
|
||||||
|
transform="matrix(0.69341642,0,0,0.69341642,406.65204,208.70617)">
|
||||||
|
<g
|
||||||
|
id="g823">
|
||||||
|
<path
|
||||||
|
id="path821"
|
||||||
|
d="m 279.806,235.505 c -0.136,-1.772 -0.928,-3.476 -2.227,-4.747 L 165.336,118.515 c 4.416,-10.403 6.747,-21.669 6.747,-33.312 0,-22.754 -8.875,-44.163 -24.938,-60.266 C 131.059,8.866 109.665,0 86.898,0 64.12,0 42.763,8.869 26.651,24.95 c -33.243,33.225 -33.25,87.266 -0.005,120.488 16.111,16.115 37.475,24.99 60.241,24.99 11.646,0 22.884,-2.35 33.312,-6.772 l 36.874,36.902 c 1.534,1.515 3.557,2.319 5.74,2.248 l 20.095,-0.705 -0.656,20.145 c -0.062,2.125 0.705,4.193 2.245,5.706 1.484,1.512 3.569,2.334 5.685,2.248 l 20.169,-0.689 -0.724,20.123 c -0.063,2.127 0.754,4.199 2.238,5.712 1.534,1.512 3.321,2.325 5.74,2.251 l 20.119,-0.684 -0.674,20.126 c -0.118,2.232 0.822,4.379 2.418,5.903 1.472,1.339 3.309,2.06 5.245,2.06 0.278,0 0.563,-0.012 0.847,-0.037 l 30.851,-3.426 c 4.169,-0.455 7.205,-4.175 6.847,-8.353 z M 76.607,74.915 c -9.476,9.466 -24.796,9.466 -34.252,0 -9.47,-9.469 -9.47,-24.786 0,-34.246 9.456,-9.46 24.771,-9.469 34.252,-0.003 9.457,9.459 9.451,24.786 0,34.249 z m 176.864,163.16 c -1.126,1.126 -2.635,1.688 -4.101,1.688 -1.466,0 -2.976,-0.563 -4.101,-1.688 l -95.501,-95.529 c 2.659,-2.867 5.077,-5.885 7.273,-9.058 l 96.429,96.41 c 2.252,2.252 2.252,5.926 0.001,8.177 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g825" />
|
||||||
|
<g
|
||||||
|
id="g827" />
|
||||||
|
<g
|
||||||
|
id="g829" />
|
||||||
|
<g
|
||||||
|
id="g831" />
|
||||||
|
<g
|
||||||
|
id="g833" />
|
||||||
|
<g
|
||||||
|
id="g835" />
|
||||||
|
<g
|
||||||
|
id="g837" />
|
||||||
|
<g
|
||||||
|
id="g839" />
|
||||||
|
<g
|
||||||
|
id="g841" />
|
||||||
|
<g
|
||||||
|
id="g843" />
|
||||||
|
<g
|
||||||
|
id="g845" />
|
||||||
|
<g
|
||||||
|
id="g847" />
|
||||||
|
<g
|
||||||
|
id="g849" />
|
||||||
|
<g
|
||||||
|
id="g851" />
|
||||||
|
<g
|
||||||
|
id="g853" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/public/img/map-pins/Planning-authority-engaged-pin.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,188 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Planning-authority-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Planning-authority-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="-550.09493"
|
||||||
|
inkscape:cy="77.96301"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#e6e6e6;fill-opacity:0.70403588;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/youyesyet/resources/public/img/map-pins/Planning-authority-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g986" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g988" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g990" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g992" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g994" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g996" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g998" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1000" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1002" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1004" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1006" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1008" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1010" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1012" />
|
||||||
|
<g
|
||||||
|
transform="translate(354.75,65.100704)"
|
||||||
|
id="g1014" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.47531389,0,0,0.47531389,410.17013,212.25752)"
|
||||||
|
id="g984"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/youyesyet/resources/public/img/map-pins/Planning-authority-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 13.076,135.976 c 0.004,0.166 0.01,0.332 0.025,0.499 0.009,0.098 0.023,0.194 0.036,0.292 0.02,0.144 0.038,0.288 0.066,0.431 0.023,0.12 0.052,0.238 0.081,0.356 0.028,0.116 0.055,0.232 0.089,0.348 0.042,0.143 0.092,0.281 0.142,0.42 0.032,0.09 0.063,0.18 0.099,0.269 0.064,0.159 0.137,0.313 0.211,0.466 0.026,0.055 0.047,0.111 0.075,0.165 0.007,0.013 0.016,0.024 0.023,0.037 0.148,0.283 0.313,0.555 0.496,0.815 0.044,0.063 0.092,0.123 0.138,0.184 0.143,0.191 0.293,0.375 0.453,0.552 0.061,0.068 0.121,0.138 0.185,0.203 0.203,0.208 0.416,0.406 0.642,0.589 0.059,0.048 0.121,0.09 0.182,0.136 0.188,0.144 0.382,0.278 0.583,0.403 0.071,0.045 0.144,0.09 0.216,0.132 0.525,0.304 1.089,0.546 1.684,0.716 0.066,0.019 0.131,0.034 0.195,0.05 0.233,0.06 0.471,0.108 0.712,0.146 0.083,0.013 0.164,0.028 0.247,0.038 0.279,0.034 0.563,0.056 0.851,0.058 0.022,0.001 0.045,0.005 0.067,0.005 0.008,0 0.017,-0.001 0.025,-0.001 h 7.221 v 17.745 c 0,4.142 3.357,7.5 7.5,7.5 h 9.326 v 132 H 35.32 c -4.143,0 -7.5,3.357 -7.5,7.5 0,4.142 3.357,7.5 7.5,7.5 h 16.826 28.311 59.89 28.311 59.889 28.311 59.889 28.311 18.646 c 4.143,0 7.5,-3.358 7.5,-7.5 0,-4.143 -3.357,-7.5 -7.5,-7.5 h -11.146 v -132 h 12.954 c 0.039,0 0.078,-0.006 0.117,-0.006 0.039,0.001 0.078,0.006 0.117,0.006 4.143,0 7.5,-3.358 7.5,-7.5 v -17.745 h 6.895 c 0.04,0 0.079,-0.005 0.119,-0.006 0.043,0.001 0.086,0.008 0.128,0.008 2.714,0 5.334,-1.479 6.667,-4.056 1.903,-3.679 0.464,-8.204 -3.215,-10.107 L 204.912,36.568 c -1.324,-0.685 -2.756,-0.93 -4.137,-0.801 -1.377,-0.128 -2.804,0.116 -4.122,0.796 L 17.13,129.119 c -0.016,0.008 -0.029,0.018 -0.045,0.026 -0.153,0.081 -0.302,0.17 -0.448,0.261 -0.069,0.043 -0.142,0.082 -0.209,0.127 -0.116,0.077 -0.228,0.162 -0.34,0.246 -0.09,0.067 -0.183,0.131 -0.269,0.201 -0.073,0.06 -0.141,0.126 -0.212,0.188 -0.113,0.101 -0.229,0.199 -0.336,0.306 -0.039,0.039 -0.074,0.081 -0.112,0.122 -0.13,0.135 -0.258,0.27 -0.376,0.413 -0.036,0.044 -0.066,0.091 -0.102,0.136 -0.113,0.143 -0.225,0.286 -0.326,0.435 -0.087,0.128 -0.163,0.263 -0.242,0.396 -0.041,0.07 -0.088,0.138 -0.127,0.21 -0.112,0.204 -0.214,0.415 -0.307,0.63 -0.002,0.004 -0.004,0.008 -0.006,0.012 -0.086,0.201 -0.161,0.407 -0.229,0.616 -0.007,0.02 -0.017,0.041 -0.023,0.062 -0.052,0.163 -0.093,0.33 -0.133,0.497 -0.019,0.073 -0.041,0.145 -0.057,0.218 -0.025,0.122 -0.042,0.247 -0.063,0.372 -0.02,0.124 -0.043,0.249 -0.057,0.374 -0.01,0.091 -0.013,0.184 -0.02,0.276 -0.012,0.162 -0.023,0.323 -0.024,0.486 0,0.019 -0.003,0.038 -0.003,0.057 0.002,0.064 0.01,0.126 0.012,0.19 z m 187.697,-84.661 148.796,76.97 H 51.479 Z M 132.845,168.53 v 132 h -44.89 v -132 z m 88.199,0 v 132 h -44.889 v -132 z m -161.399,132 V 169.619 H 72.956 V 300.53 Z m 88.2,0 V 169.619 h 13.311 V 300.53 Z m 88.199,0 V 169.619 h 13.311 V 300.53 Z m 88.2,0 V 169.619 h 13.311 V 300.53 Z m -15,0 h -44.889 v -132 h 44.889 z m 49,-147 H 42.818 v -10.245 h 315.426 z"
|
||||||
|
id="path978" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 21.655,324.407 c -4.143,0 -7.5,3.358 -7.5,7.5 0,4.142 3.357,7.5 7.5,7.5 h 355.709 c 4.143,0 7.5,-3.358 7.5,-7.5 0,-4.142 -3.357,-7.5 -7.5,-7.5 z"
|
||||||
|
id="path980" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 391.52,348.285 H 7.5 c -4.142,0 -7.5,3.358 -7.5,7.5 0,4.142 3.358,7.5 7.5,7.5 h 384.02 c 4.143,0 7.5,-3.358 7.5,-7.5 0,-4.142 -3.358,-7.5 -7.5,-7.5 z"
|
||||||
|
id="path982" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.9 KiB |
BIN
resources/public/img/map-pins/Planning-authority-pin.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
117
resources/public/img/map-pins/Planning-authority-pin.svg
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="30.000006"
|
||||||
|
height="40.014305"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Planning-authority-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/geocsv/resources/public/img/map-pins/Planning-authority-pin.png"
|
||||||
|
inkscape:export-xdpi="95.965683"
|
||||||
|
inkscape:export-ydpi="95.965683"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="15.839192"
|
||||||
|
inkscape:cx="-7.8979032"
|
||||||
|
inkscape:cy="19.960674"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="0"
|
||||||
|
originy="0" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-385.35304,-463.7035)">
|
||||||
|
<path
|
||||||
|
style="fill:#228b22;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:1.31734538;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 391,464.36217 h 18.70608 c 2.49414,1e-5 4.98829,2.52441 4.98829,5.04882 v 18.93304 c 0,2.52441 -2.49415,5.04881 -4.98829,5.04881 h -4.98829 c -2.49414,0 -2.49414,5.89028 -3.74121,8.83542 -1.66277,-2.94514 -2.49415,-8.83542 -4.98829,-8.83542 H 391 c -2.49414,0 -4.98829,-2.5244 -4.98829,-5.04881 v -18.93304 c 0,-2.52441 2.49415,-5.04881 4.98829,-5.04882 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.06630277,0,0,0.06630277,387.11397,464.20872)"
|
||||||
|
id="g984"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/youyesyet/resources/public/img/map-pins/Planning-authority-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 13.076,135.976 c 0.004,0.166 0.01,0.332 0.025,0.499 0.009,0.098 0.023,0.194 0.036,0.292 0.02,0.144 0.038,0.288 0.066,0.431 0.023,0.12 0.052,0.238 0.081,0.356 0.028,0.116 0.055,0.232 0.089,0.348 0.042,0.143 0.092,0.281 0.142,0.42 0.032,0.09 0.063,0.18 0.099,0.269 0.064,0.159 0.137,0.313 0.211,0.466 0.026,0.055 0.047,0.111 0.075,0.165 0.007,0.013 0.016,0.024 0.023,0.037 0.148,0.283 0.313,0.555 0.496,0.815 0.044,0.063 0.092,0.123 0.138,0.184 0.143,0.191 0.293,0.375 0.453,0.552 0.061,0.068 0.121,0.138 0.185,0.203 0.203,0.208 0.416,0.406 0.642,0.589 0.059,0.048 0.121,0.09 0.182,0.136 0.188,0.144 0.382,0.278 0.583,0.403 0.071,0.045 0.144,0.09 0.216,0.132 0.525,0.304 1.089,0.546 1.684,0.716 0.066,0.019 0.131,0.034 0.195,0.05 0.233,0.06 0.471,0.108 0.712,0.146 0.083,0.013 0.164,0.028 0.247,0.038 0.279,0.034 0.563,0.056 0.851,0.058 0.022,0.001 0.045,0.005 0.067,0.005 0.008,0 0.017,-0.001 0.025,-0.001 h 7.221 v 17.745 c 0,4.142 3.357,7.5 7.5,7.5 h 9.326 v 132 H 35.32 c -4.143,0 -7.5,3.357 -7.5,7.5 0,4.142 3.357,7.5 7.5,7.5 h 16.826 28.311 59.89 28.311 59.889 28.311 59.889 28.311 18.646 c 4.143,0 7.5,-3.358 7.5,-7.5 0,-4.143 -3.357,-7.5 -7.5,-7.5 h -11.146 v -132 h 12.954 c 0.039,0 0.078,-0.006 0.117,-0.006 0.039,0.001 0.078,0.006 0.117,0.006 4.143,0 7.5,-3.358 7.5,-7.5 v -17.745 h 6.895 c 0.04,0 0.079,-0.005 0.119,-0.006 0.043,0.001 0.086,0.008 0.128,0.008 2.714,0 5.334,-1.479 6.667,-4.056 1.903,-3.679 0.464,-8.204 -3.215,-10.107 L 204.912,36.568 c -1.324,-0.685 -2.756,-0.93 -4.137,-0.801 -1.377,-0.128 -2.804,0.116 -4.122,0.796 L 17.13,129.119 c -0.016,0.008 -0.029,0.018 -0.045,0.026 -0.153,0.081 -0.302,0.17 -0.448,0.261 -0.069,0.043 -0.142,0.082 -0.209,0.127 -0.116,0.077 -0.228,0.162 -0.34,0.246 -0.09,0.067 -0.183,0.131 -0.269,0.201 -0.073,0.06 -0.141,0.126 -0.212,0.188 -0.113,0.101 -0.229,0.199 -0.336,0.306 -0.039,0.039 -0.074,0.081 -0.112,0.122 -0.13,0.135 -0.258,0.27 -0.376,0.413 -0.036,0.044 -0.066,0.091 -0.102,0.136 -0.113,0.143 -0.225,0.286 -0.326,0.435 -0.087,0.128 -0.163,0.263 -0.242,0.396 -0.041,0.07 -0.088,0.138 -0.127,0.21 -0.112,0.204 -0.214,0.415 -0.307,0.63 -0.002,0.004 -0.004,0.008 -0.006,0.012 -0.086,0.201 -0.161,0.407 -0.229,0.616 -0.007,0.02 -0.017,0.041 -0.023,0.062 -0.052,0.163 -0.093,0.33 -0.133,0.497 -0.019,0.073 -0.041,0.145 -0.057,0.218 -0.025,0.122 -0.042,0.247 -0.063,0.372 -0.02,0.124 -0.043,0.249 -0.057,0.374 -0.01,0.091 -0.013,0.184 -0.02,0.276 -0.012,0.162 -0.023,0.323 -0.024,0.486 0,0.019 -0.003,0.038 -0.003,0.057 0.002,0.064 0.01,0.126 0.012,0.19 z m 187.697,-84.661 148.796,76.97 H 51.479 Z M 132.845,168.53 v 132 h -44.89 v -132 z m 88.199,0 v 132 h -44.889 v -132 z m -161.399,132 V 169.619 H 72.956 V 300.53 Z m 88.2,0 V 169.619 h 13.311 V 300.53 Z m 88.199,0 V 169.619 h 13.311 V 300.53 Z m 88.2,0 V 169.619 h 13.311 V 300.53 Z m -15,0 h -44.889 v -132 h 44.889 z m 49,-147 H 42.818 v -10.245 h 315.426 z"
|
||||||
|
id="path978" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 21.655,324.407 c -4.143,0 -7.5,3.358 -7.5,7.5 0,4.142 3.357,7.5 7.5,7.5 h 355.709 c 4.143,0 7.5,-3.358 7.5,-7.5 0,-4.142 -3.357,-7.5 -7.5,-7.5 z"
|
||||||
|
id="path980" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 391.52,348.285 H 7.5 c -4.142,0 -7.5,3.358 -7.5,7.5 0,4.142 3.358,7.5 7.5,7.5 h 384.02 c 4.143,0 7.5,-3.358 7.5,-7.5 0,-4.142 -3.358,-7.5 -7.5,-7.5 z"
|
||||||
|
id="path982" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7 KiB |
BIN
resources/public/img/map-pins/Power-supplier-pin.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
174
resources/public/img/map-pins/Power-supplier-pin.svg
Normal file
|
@ -0,0 +1,174 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="Power-supplier-pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/youyesyet/resources/public/img/map-pins/Power-supplier-pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="371.65244"
|
||||||
|
inkscape:cy="86.04423"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1016"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#5a5cdc;fill-opacity:0.70403588;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g876"
|
||||||
|
transform="matrix(0.40458264,0,0,0.40458264,412.582,207.52617)">
|
||||||
|
<path
|
||||||
|
id="path821"
|
||||||
|
d="M 456.855,72.488 290.673,0 H 166.183 L 0,72.488 v 62.348 H 149.276 L 63.569,426.856 H 0.928 v 30 h 455 v -30 H 393.287 L 307.58,134.836 H 456.856 V 72.488 Z M 184.312,30 h 88.232 v 74.836 h -88.232 z m -3.77,104.836 h 95.772 l 14.531,49.508 -62.417,67.988 -62.417,-67.988 z M 30,104.836 V 92.133 L 154.312,37.908 v 66.928 z m 126.145,113.122 51.92,56.554 -100.718,109.709 z M 108.933,426.855 228.428,296.693 347.923,426.855 Z M 349.508,384.221 248.791,274.513 300.71,217.959 Z M 426.855,104.836 H 302.544 V 37.908 l 124.312,54.225 v 12.703 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g823">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g825">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g827">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g829">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g831">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g833">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g835">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g837">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g839">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g841">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g843">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g845">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g847">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g849">
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g851">
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
BIN
resources/public/img/map-pins/Unknown-pin.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
149
resources/public/img/map-pins/Unknown-pin.svg
Normal file
|
@ -0,0 +1,149 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<!-- Icon created for SceneHere (c) 2010 Simon Brooke $Revision: 1.2 $ -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="240.5"
|
||||||
|
height="317.00851"
|
||||||
|
id="svg2"
|
||||||
|
sodipodi:version="0.32"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="basic_map_pin.svg"
|
||||||
|
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||||
|
inkscape:export-filename="/home/simon/workspace/scenehere/src/war/images/icons/basic_map_pin.png"
|
||||||
|
inkscape:export-xdpi="11.98"
|
||||||
|
inkscape:export-ydpi="11.98"
|
||||||
|
version="1.1">
|
||||||
|
<defs
|
||||||
|
id="defs4">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3155">
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3157" />
|
||||||
|
<stop
|
||||||
|
id="stop3163"
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#ffd200;stop-opacity:0.74789917;" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#ffff67;stop-opacity:0;"
|
||||||
|
offset="1"
|
||||||
|
id="stop3159" />
|
||||||
|
</linearGradient>
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 526.18109 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||||
|
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||||
|
id="perspective10" />
|
||||||
|
<radialGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3155"
|
||||||
|
id="radialGradient3161"
|
||||||
|
cx="77.050865"
|
||||||
|
cy="429.06537"
|
||||||
|
fx="77.050865"
|
||||||
|
fy="429.06537"
|
||||||
|
r="155.491"
|
||||||
|
gradientTransform="matrix(1,0,0,1.0302596,0,-12.983332)"
|
||||||
|
gradientUnits="userSpaceOnUse" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
gridtolerance="10000"
|
||||||
|
guidetolerance="10"
|
||||||
|
objecttolerance="10"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.98994949"
|
||||||
|
inkscape:cx="-144.01361"
|
||||||
|
inkscape:cy="86.04423"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1031"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid2383"
|
||||||
|
originx="-384.75"
|
||||||
|
originy="-548.24148" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Basic pin for SceneHere</dc:title>
|
||||||
|
<dc:date>20100801</dc:date>
|
||||||
|
<dc:creator>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:creator>
|
||||||
|
<dc:rights>
|
||||||
|
<cc:Agent>
|
||||||
|
<dc:title>Copyright (c) 2010 Simon Brooke</dc:title>
|
||||||
|
</cc:Agent>
|
||||||
|
</dc:rights>
|
||||||
|
<dc:identifier>basic_map_pin.svg</dc:identifier>
|
||||||
|
<dc:description>
|
||||||
|
Basic default map pin
|
||||||
|
$Revision: 1.2 $
|
||||||
|
</dc:description>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-384.75,-187.11218)">
|
||||||
|
<path
|
||||||
|
style="fill:#dddddc;fill-opacity:0.70403586;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:10.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 430,192.36218 150,0 c 20,1e-5 40,20.00001 40,40 l 0,150 c 0,20.00001 -20,40.00001 -40,40 l -40,0 c -20,0 -20,46.66667 -30,70 -13.33333,-23.33333 -20,-70 -40,-70 l -40,0 c -20,10e-6 -40,-19.99999 -40,-40 l 0,-150 c 0,-19.99999 20,-39.99999 40,-40 z"
|
||||||
|
id="path2387"
|
||||||
|
sodipodi:nodetypes="cccccccccccc"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="star"
|
||||||
|
style="fill:url(#radialGradient3161);fill-opacity:1;stroke:#f4f3f3;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path3153"
|
||||||
|
sodipodi:sides="5"
|
||||||
|
sodipodi:cx="90"
|
||||||
|
sodipodi:cy="432.36218"
|
||||||
|
sodipodi:r1="168.77766"
|
||||||
|
sodipodi:r2="56.68261"
|
||||||
|
sodipodi:arg1="0.69157251"
|
||||||
|
sodipodi:arg2="1.2771074"
|
||||||
|
inkscape:flatsided="false"
|
||||||
|
inkscape:rounded="0"
|
||||||
|
inkscape:randomized="0"
|
||||||
|
d="M 220,540 106.40877,486.61778 27.802561,589.26144 43.470446,464.73376 -78.440131,421.69344 44.83438,398.11331 48.095713,268.86928 108.61567,378.82364 232.54186,341.98675 146.67073,433.52241 Z"
|
||||||
|
transform="matrix(0.6026863,0.1441863,-0.1441863,0.6026863,509.16002,39.357112)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
BIN
resources/public/img/map-pins/X11-alice-blue-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-antique-white-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-aqua-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-aquamarine-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-azure-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-beige-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-bisque-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-black-pin.png
Normal file
After Width: | Height: | Size: 976 B |
BIN
resources/public/img/map-pins/X11-blanched-almond-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-blue-pin.png
Normal file
After Width: | Height: | Size: 1,017 B |
BIN
resources/public/img/map-pins/X11-blue-violet-pin.png
Normal file
After Width: | Height: | Size: 1,000 B |
BIN
resources/public/img/map-pins/X11-brown-pin.png
Normal file
After Width: | Height: | Size: 973 B |
BIN
resources/public/img/map-pins/X11-burlywood-pin.png
Normal file
After Width: | Height: | Size: 1,017 B |
BIN
resources/public/img/map-pins/X11-cadet-blue-pin.png
Normal file
After Width: | Height: | Size: 976 B |
BIN
resources/public/img/map-pins/X11-chartreuse-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-chocolate-pin.png
Normal file
After Width: | Height: | Size: 991 B |
BIN
resources/public/img/map-pins/X11-coral-pin.png
Normal file
After Width: | Height: | Size: 978 B |
BIN
resources/public/img/map-pins/X11-cornflower-blue-pin.png
Normal file
After Width: | Height: | Size: 997 B |
BIN
resources/public/img/map-pins/X11-cornsilk-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-crimson-pin.png
Normal file
After Width: | Height: | Size: 980 B |
BIN
resources/public/img/map-pins/X11-cyan-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-dark-blue-pin.png
Normal file
After Width: | Height: | Size: 988 B |
BIN
resources/public/img/map-pins/X11-dark-cyan-pin.png
Normal file
After Width: | Height: | Size: 985 B |
BIN
resources/public/img/map-pins/X11-dark-goldenrod-pin.png
Normal file
After Width: | Height: | Size: 1,000 B |
BIN
resources/public/img/map-pins/X11-dark-gray-pin.png
Normal file
After Width: | Height: | Size: 995 B |
BIN
resources/public/img/map-pins/X11-dark-green-pin.png
Normal file
After Width: | Height: | Size: 973 B |
BIN
resources/public/img/map-pins/X11-dark-khaki-pin.png
Normal file
After Width: | Height: | Size: 1,001 B |
BIN
resources/public/img/map-pins/X11-dark-magenta-pin.png
Normal file
After Width: | Height: | Size: 987 B |
BIN
resources/public/img/map-pins/X11-dark-olive-green-pin.png
Normal file
After Width: | Height: | Size: 924 B |
BIN
resources/public/img/map-pins/X11-dark-orange-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-dark-orchid-pin.png
Normal file
After Width: | Height: | Size: 1,000 B |
BIN
resources/public/img/map-pins/X11-dark-red-pin.png
Normal file
After Width: | Height: | Size: 989 B |
BIN
resources/public/img/map-pins/X11-dark-salmon-pin.png
Normal file
After Width: | Height: | Size: 1,004 B |
BIN
resources/public/img/map-pins/X11-dark-sea-green-pin.png
Normal file
After Width: | Height: | Size: 1,006 B |
BIN
resources/public/img/map-pins/X11-dark-slate-blue-pin.png
Normal file
After Width: | Height: | Size: 935 B |
BIN
resources/public/img/map-pins/X11-dark-slate-gray-pin.png
Normal file
After Width: | Height: | Size: 886 B |
BIN
resources/public/img/map-pins/X11-dark-turquoise-pin.png
Normal file
After Width: | Height: | Size: 1,023 B |
BIN
resources/public/img/map-pins/X11-dark-violet-pin.png
Normal file
After Width: | Height: | Size: 1,011 B |
BIN
resources/public/img/map-pins/X11-deep-pink-pin.png
Normal file
After Width: | Height: | Size: 1,016 B |
BIN
resources/public/img/map-pins/X11-deep-sky-blue-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-dim-gray-pin.png
Normal file
After Width: | Height: | Size: 936 B |
BIN
resources/public/img/map-pins/X11-dodger-blue-pin.png
Normal file
After Width: | Height: | Size: 1,015 B |
BIN
resources/public/img/map-pins/X11-firebrick-pin.png
Normal file
After Width: | Height: | Size: 985 B |
BIN
resources/public/img/map-pins/X11-floral-white-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-forest-green-pin.png
Normal file
After Width: | Height: | Size: 972 B |
BIN
resources/public/img/map-pins/X11-fuchsia-pin.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
resources/public/img/map-pins/X11-gainsboro-pin.png
Normal file
After Width: | Height: | Size: 1,007 B |